For loops, part 2

The first argument is the starting point and the second argument is beyond the ending point! for i in range(1,4): #1, 2, 3 ... after each pass through the loop. for i in range(2, 9, 2):#2, 4, 6, 8. print(i) ... Python has a . data structure. called a . list. A list is any sequence of data elements (integers, floats, strings, Booleans) enclosed ... ................
................