0
Num=5. How can I print this 5 times
3 Respostas
+ 2
Using a for loop in Python. Review the concept in the sololearn lesson. This is the code:
num = 5
for x in range(5):
print (num)
+ 1
Fixed a typo, if you have to look at the code again.
0
print(*range(Num))