Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 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 '''