forked from Pavel_Durov/python_bot
12 lines
219 B
Python
12 lines
219 B
Python
|
|
import random
|
|
def RandomDick():
|
|
with open('dicktxt/dick_sinonims.txt', 'r', encoding='utf-8') as file:
|
|
words = file.readlines()
|
|
|
|
random_line = random.choice(words).strip()
|
|
return random_line
|
|
|
|
|
|
|
|
|