PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#The idea of this is like musical chairs 😂
#You start off with say 5 letters and 5 boxes.
#Each shuffle a box is removed forcing one #letter to be nocked out of the game this #repeats untill theres only one letter and 1 #box left
#Catch: Numbers are to be randomly shuffled #around each time as follows
#[a][b][c][d] < all letters have a box
#Shuffle 1, --box
#[c][d][b] < "a" missed out and removed
#Shuffle 2, --box
#[b][c] < "d" missed out
#Shuffle 3, --box
#[c] < "b" missed out
#[c] < Won
import random
letters = ["a","b","c","d","e"]
for letter in range(0,5):
print(letters)
rand = random.randint(0,len(letters)-1)
letters.pop(rand)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run