0 votes
in Python by

Read the below program code carefully, 

a = "123789"  

while x in a:  

    print(x, end=" ")  

What will be the output of this program?

a) i i i i i i …

b) 123789

c) SyntaxError

d) NameError

...