Contact: aviboots(AT)netvision.net.il
41,604 questions
54,252 answers
573 users
lst = ['a', 'c', 'd', 'f', ['x', 'y'], 'g', 'h', 'k'] print(lst[4]) print(lst[4][0]) print(lst[4][1]) ''' run: ['x', 'y'] x y '''