Predict the output of the following code fragment:
i) for x in range(5):
print(x)
for x in range(3,6):
print(x)
for x in range(3,8,2):
print(x)
iv) count=0
while True:
print(count)
count+= 1
Answers
Answered by
1
Explanation:
1
2
3
4
3
4
5
3
5
7
infinite loop
Similar questions