Report Bug
Qus :

What will be the output of the following Python code?

x='abcd'
for i in x:
    print(i.upper())


Qus

निम्नलिखित पायथन कोड का आउटपुट क्या होगा?

x='abcd'
for i in x:
    print(i.upper())


A. a BCD
B. abcd
C. error
D. A B CD


Solution
D. A B CD






Report Bug