Answers for "[for in in ] python notation"

7

python loop certain number of times

# To loop n times, use loop over range(n)
for i in range(n):
  # Do something
Posted by: Guest on February-21-2020
7

loops in python

#While Loop:
while ("condition that if true the loop continues"):
  #Do whatever you want here
else: #If the while loop reaches the end do the things inside here
  #Do whatever you want here

#For Loop:
for x in range("how many times you want to run"):
  #Do whatever you want here
Posted by: Guest on September-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language