1.

What is the output of the following program? for i in range(2): print(i,end="") for i in range(4,6): print(i,end="" )

Answer»

ANSWER:

(I) 0 1

(ii) 4 5

EXPLANATION:

DUE to END=" " , the following range is printed in the above MANNER



Discussion

No Comment Found