How to reverse deque in Python

1 Answer

0 votes
import collections 
  
q = collections.deque([1, 18, '27', "c++", 'python', 18, 19, 100]) 

print(q) 

q.reverse() 

print(q) 



   
'''
run:
    
deque([1, 18, '27', 'c++', 'python', 18, 19, 100])
deque([100, 19, 18, 'python', 'c++', '27', 18, 1])
 
'''

 



answered Jul 21, 2020 by avibootz

Related questions

1 answer 204 views
204 views asked Jul 22, 2020 by avibootz
2 answers 203 views
1 answer 171 views
1 answer 183 views
2 answers 213 views
2 answers 232 views
1 answer 157 views
...