3 lines
71 B
Text
3 lines
71 B
Text
from random import choice
|
|
a = ['Beep!', 'T-T', 'Ow!']
|
|
print(choice(a))
|