Computer Science, asked by koushiks5028, 6 months ago

Find the output for the following python code:

for i in range(2):

print i

for i in range (4,6):

print i​

Answers

Answered by shahana26
7

Answer:

0145

Explanation:

in range 2, it will print 0 to 1, 2 is not inclusive

in range 4,6 it will print 4 to 5, 6 is not inclusive

Similar questions