12 lines
399 B
Python
12 lines
399 B
Python
import random
|
||
|
||
|
||
def RandomDick():
|
||
# Забирает рандомный синоним к слову хуй из dick_sinonims.txt
|
||
# у линуха и винды не забывай про разные \/
|
||
# когда указываешь путь
|
||
with open('dicktxt/dick_sinonims.txt', 'r', encoding='utf-8') as file:
|
||
words = file.readlines()
|
||
|
||
return random.choice(words).strip()
|