so I am working on a py package and I have a prob.
when I run the following code, it prints none. pls help.
def shuff(list_):
variable = random.shuffle(list_)
return variable
lis = ["asad", "abaxj", "hccj", "xjx", "jcjz", "cbjbz"]
var = shuff(lis)
print(var)
any help is appreciated :)