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
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
Math,
3 months ago
Physics,
3 months ago
Science,
6 months ago
English,
10 months ago
Political Science,
10 months ago