24 lines
378 B
Python
24 lines
378 B
Python
import random
|
|
|
|
def score(x):
|
|
return score
|
|
|
|
def command_tilt():
|
|
pass
|
|
|
|
def command_blind():
|
|
pass
|
|
|
|
def command_scream():
|
|
pass
|
|
|
|
def command_spin():
|
|
pass
|
|
|
|
def main():
|
|
print("Let's play a Round of 'Raspberry says'!")
|
|
list_command_choices = [command_tilt, command_blind, command_scream, command_spin]
|
|
print(random.choices(list_command_choices))
|
|
|
|
|
|
main() |