Computer Science, asked by choudharybhavik1234, 7 months ago

Find and write the output of the following python code: 2

for I in range (20,100,10):

j=I/2

print(j)​

Answers

Answered by Anonymous
1

Answer:

hi..

Explanation:

the output will be:

10

15

20

25

30

35

40

45

hope it helps you ☺️

Answered by Oreki
1

Output:

10.0

15.0

20.0

25.0

30.0

35.0

40.0

45.0

Similar questions