Report Bug
Qus :

What is the output of the following?

x=123
for i in x:
    print(i)

Qus

निम्नलिखित का आउटपुट क्या है?

x=123
for i in x:
    print(i)


A. 1 2 3
B. 123
C. Error
D. none of these


Solution
C. Error






Report Bug