4 lines
No EOL
142 B
Python
4 lines
No EOL
142 B
Python
#!/usr/bin/python3
|
|
from random import choice
|
|
opinions = ["Oreos are better than Chips Ahoy!", "Human baka, be furry!"]
|
|
print(choice(opinions)) |