............. ऑपरेटर दिए गये आइटमो की संख्या के लिए एक सूची दोहराता है |<break-line><break-line>__________ operator repeats a list for the given number of items.
निम्नलिखित एक्सप्रेशन का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following expression ?<pre><code>x = 14
print(x>>2)</code></pre>
निम्नलिखित का आउटपुट क्या होगा ?<break-line><break-line>What is the output of the following ?<pre><code>x = 'abcd'
for i in range(len(x)):
i.upper()
print(x)</code></pre>