You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.3 KiB

hotseat ...............

In [1]:
import random

names = ['jacopo', 'louisa', 'martin', 'federico', 'nami', 'euna', 'clara', 'camilo', 'kendal', 'floor']
In [2]:
# There we go
hotseat = random.choice(names)
In [3]:
# 3. 2. 1. .....
print(hotseat)
camilo
In [ ]: