Answers for "python for loop syntax to have the i"

4

python for loop

my_list = ['a', 'b', 'c']
for i in my_list:
  print(i)
Posted by: Guest on February-07-2022
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

Python Answers by Framework

Browse Popular Code Answers by Language