I\'m working on writing two different shuffle functions.
The first shuffle function must take a list and return a new list with the elements shuffled into a random o
You can use this:
import random def shuffle(lst): return sorted(lst ,key = lambda i,random.ramdom())