PRINT 1 TO 50 USING FOR LOOP.
(coding needed)
Answers
Answered by
1
Answer:
for x in range (1,51):
print (x)
Explanation:
I did 51 because if i would do 50 it would print till 49 only.
hope this helps:)
Similar questions