2022-12-16 19:19:23 +10:00
|
|
|
|
|
|
|
|
|
import random
|
2022-12-16 23:02:32 +10:00
|
|
|
|
|
2022-12-16 19:19:23 +10:00
|
|
|
|
def RandomDick():
|
2022-12-16 23:02:32 +10:00
|
|
|
|
# Забирает рандомный синоним к слову хуй из dick_sinonims.txt
|
|
|
|
|
# у линуха и винды не забывай про разные \/
|
|
|
|
|
# когда указываешь путь
|
2022-12-16 22:20:11 +10:00
|
|
|
|
with open('dicktxt/dick_sinonims.txt', 'r', encoding='utf-8') as file:
|
2022-12-16 19:19:23 +10:00
|
|
|
|
words = file.readlines()
|
|
|
|
|
|
|
|
|
|
random_line = random.choice(words).strip()
|
|
|
|
|
return random_line
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|