Page 1 of 1

L11-02) Write a function scrambleEachList(aListOfLists) that takes a list of lists as a parameter and returns a list con

Posted: Mon May 09, 2022 7:04 am
by answerhappygod
L11-02) Write a function
scrambleEachList(aListOfLists) that takes a list
of lists as a parameter and returns a list containing each of the
original lists but with their items in a random new order.
>>> scrambleEachList(moreLists)
[[5,6,4],[3,2,9,1],[7,5,4,8,6]]