Answers for "how to repeat a code in python"

2

how to reapete the code in python

for i in range(4):  # 4 = number of times you want to run the code
  print("Hello World")
Posted by: Guest on July-12-2020
0

python repet x time

for i in range(50):
    print "Some thing"
Posted by: Guest on November-01-2020

Code answers related to "how to repeat a code in python"

Python Answers by Framework

Browse Popular Code Answers by Language