Report Bug
Qus :

What will be the output of the following Python code?

string = "my name is x"
for i in string:
    print (i, end=", ")

Qus

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

string = "my name is x"
for i in string:
    print (i, end=", ")


A. m, y, , n, a, m, e, , i, s, , x,
B. m, y, , n, a, m, e, , i, s, , x
C. my, name, is, x,
D. error


Solution
A. m, y, , n, a, m, e, , i, s, , x,



Explanation
Variable i takes the value of one character at a time.



Report Bug