pihta24

Я вас знаю

Feb 2nd, 2021
710
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. name = None
  2.  
  3.  
  4. def polite_input(question):
  5.     global name
  6.     if name is None:
  7.         name = input("Как вас зовут?\n")
  8.     return input(f"{name}, {question}\n")
  9.  
Advertisement
Add Comment
Please, Sign In to add comment