Contact: aviboots(AT)netvision.net.il
41,389 questions
53,935 answers
573 users
lst = ['a', 'b', 'c', 'b', 'e', 'b', 'g']; lst.remove('b') print(lst) ''' run: ['a', 'c', 'b', 'e', 'b', 'g'] '''