I am having trouble understanding how to shuffle a deque. let say I have these two deques (weather order or not ) and want to shuffle them. Why I am getting none here.
import random
from collections import deque
a = deque([1, 2, 3])
b = deque([4, 5, 6])
a += b
print(random.shuffle(a))