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 195 views
1 answer 169 views
1 answer 185 views
2 answers 188 views
188 views asked Apr 24, 2021 by avibootz
1 answer 137 views
137 views asked Aug 28, 2020 by avibootz
2 answers 184 views
1 answer 263 views
...