Report Bug
Qus :

What is the output of the following

y='klmn'
for i in range(len(y)):
    print(y)

Qus

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

y='klmn'
for i in range(len(y)):
    print(y)


A. klmn klmn klmn klmn
B. k
C. kkk
D. None of the these


Solution
A. klmn klmn klmn klmn






Report Bug