+1 vote
in Python by
Read the Following program:

z = "xyz"  

j = "j"  

while j in z:  

    print(j, end=" ")  

What will be the output of this statement?

i) xyz

ii) No output

iii) x y z

iv) j j j j j j j..

Related questions

+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
0 votes
asked Jan 19, 2021 in Python by SakshiSharma
...