# example of the for loop with the list of numbers as def main(): y=1 for counter in [1,2,3,4]: y=y+counter print("counter = ", counter, ", y = ", y) main()