forked from Pavel_Durov/python_bot
13 lines
400 B
Python
13 lines
400 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()
|
||
|