txt/terra/text/comments.py

14 lines
538 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import random
irony_list = [
"Умные мысли приследовали его.. Но он оказался быстрее.",
"99 из 99 докторов выписывают вам парацетамол, от головы.",
"А голову вы дома не забыли?",
"Тут должна была быть ирония, но ее забыли прописать.",
"Партия выписывает вам успокоительное.",
]
def print_irony():
print(random.choice(irony_list))