forked from swee/MeowNex
4 lines
70 B
Text
4 lines
70 B
Text
|
from random import choice
|
||
|
a=['Prr!', "Meep!", '-w-']
|
||
|
print(choice(a))
|