Saved Bookmarks
| 1. |
For i in range (5,10) : print ( i*5)Write it's output |
Answer» Required Answer:-CORRECT Question:WRITE the OUTPUT of the GIVEN c∅de in Python, for i in range(5,10): print(i*5) Output:25 30 35 40 Explanation:
|
|