I have never had this problem before but when i try and shuffle a list i get a return of 'None'
import random
c=[1,4,67,3]
c=random.shuffle(c)
print c
The print statement returns 'None' and i dont know why, I have looked around for an answer to this problem but there doesent seem to be anything. I hope i am not making an obvious mistake.