Find and write the output of the following python code: 2
for I in range (20,100,10):
j=I/2
print(j)
Answers
Answer:
hi..
Explanation:
the output will be:
10
15
20
25
30
35
40
45
hope it helps you ☺️
Output:
10.0
15.0
20.0
25.0
30.0
35.0
40.0
45.0