Computer Science
Predict the output of the following code fragments:
for x in range(5):
print (x)
Related Questions
Predict the output of the following code fragments:
x = 45 while x < 50 : print (x)
Predict the output of the following code fragments:
for x in [1,2,3,4,5]: print (x)
Predict the output of the following code fragments:
for p in range(1,10): print (p)
Predict the output of the following code fragments:
for q in range(100, 50, -10): print (q)