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 207 views
207 views asked Jul 22, 2020 by avibootz
2 answers 206 views
1 answer 174 views
1 answer 188 views
2 answers 216 views
2 answers 235 views
1 answer 161 views
...