I have a List in python. I want to add a new item to this list. But I want to shuffle (insert to a random place in list with saving the order of other elements ) it to The list exactly. I want Something like this:
A = [2,4,3,6,7,3,3,4,6]
B = 5
shuffle(A,B)
How can I do this?