Saved Bookmarks
| 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» (I) 0 1 (ii) 4 5 DUE to END=" " , the following range is printed in the above MANNER
|
|