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="" )
Answers
Answered by
3
Answer:
(I) 0 1
(ii) 4 5
Explanation:
due to end=" " , the following range is printed in the above manner
Similar questions