Computer Science

Write the output of the following code:

for i in range(5):
    print(i)

Python

Python Control Flow

2 Likes

Answer

Output
0
1
2
3
4

Answered By

1 Like


Related Questions