Answers for "create functions with loop python"

2

how to create a for loop in python

my_list = [1,2,3]
for number in my_list:
	print(number)
#outputs
#1
#2
#3
Posted by: Guest on August-31-2021
0

how to make loop python

loop = True #make variable loop
while loop: #makes the loop
  print('Loop Worked')#this is your script for the loop
Posted by: Guest on April-04-2021

Code answers related to "create functions with loop python"

Python Answers by Framework

Browse Popular Code Answers by Language