my_list=[] for i in range(0,19,2): my_list.append(i) print(i) ''' my_list=list(range(0,19,2)) for i in my_list: print(i) ''' &...