Contact: aviboots(AT)netvision.net.il
39,872 questions
51,796 answers
573 users
lst = ['a', 'c', 'd', 'f', ('v', 'w'), 'g', 'h', 'k'] print(lst[4]) print(lst[4][0]) print(lst[4][1]) ''' run: ('v', 'w') v w '''