Contact: aviboots(AT)netvision.net.il
41,593 questions
54,235 answers
573 users
lst = ['a', 'b', 'c', 'b', 'e', 'b', 'g']; ch = lst.pop(1) print(lst) print(ch) ''' run: ['a', 'c', 'b', 'e', 'b', 'g'] b '''