Contact: aviboots(AT)netvision.net.il
41,615 questions
54,278 answers
573 users
import collections q = collections.deque([1, 18, '27', 2, 'python', 18, 19, 18, 18]) print(q) q.remove(18) print(q) ''' run: deque([1, 18, '27', 2, 'python', 18, 19, 18, 18]) deque([1, '27', 2, 'python', 18, 19, 18, 18]) '''