# for loops review name = "Rodrigo" weekdays = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday") # len(thing) returns the number of elements in thing # len(name) = 7 # len(weekdays) = 5 # while loop vs for loop i = 0 while i < len(weekdays): day = weekdays[i] # start actual code print day # end actual code i += 1 for day in weekdays: # start actual code print day # end actual code