How to append values to deque in Python

1 Answer

0 votes
import collections

d = collections.deque('python')     

d.append('java')
d.append('c')

print(d)



'''
run:

deque(['p', 'y', 't', 'h', 'o', 'n', 'java', 'c'])

'''

 



answered May 8, 2019 by avibootz

Related questions

1 answer 197 views
1 answer 172 views
1 answer 187 views
2 answers 191 views
191 views asked Apr 24, 2021 by avibootz
1 answer 145 views
145 views asked Aug 28, 2020 by avibootz
2 answers 194 views
1 answer 265 views
...