forked from swee/MeowNex
4 lines
71 B
Text
4 lines
71 B
Text
|
from random import choice
|
||
|
a = ['Beep!', 'T-T', 'Ow!']
|
||
|
print(choice(a))
|