कोड पर निम्नलिखित का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code?<break-line><break-line><pre><code>tuple1 = (5,1,7,6,2)
tuple1.pop(2)
print(tuple1)</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<break-line><break-line><pre><code>def display(b, n):
while n>0:
print(b, end='')
n=n-l
display('z', 3)</code></pre>