Guest User

Untitled

a guest
Apr 2nd, 2021
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. @bot.message_handler(commands=['vana'])
  2. def read_imena(message):
  3. with open('./txt/imena.txt') as f:
  4. c = random.randint(0, 40)
  5. imena = f.read().split('\n')
  6. random.shuffle(imena)
  7. return imena[0]
  8. try:
  9. bot.send_message(message.chat.id, "Тебя зовут " +str(imena)+ " и тебе " +str(c)+ " лет")
  10.  
Advertisement
Add Comment
Please, Sign In to add comment