Question: Python: Select at random and without replacement an element of a list and print it to the screen until there are no elements left to
Python:
Select at random and without replacement an element of a list and print it to the screen until there are no elements left to select. NB: When a population element can be selected only one time = sampling without replacement.
For example:
Given the list
myList = [1, 2, 3, 4, 5, 6, 7]
The output could be
3 5 1 2 7 4 6
Of any one of the 7! possible outputs.
You MAY NOT use the shuffle method in your solution.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
