Advertisement
desislava_topuzakova

04. Personal Titles

Apr 17th, 2021
894
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. # възраст -> float
  2. # пол -> text
  3. # проверка за пола:
  4. # m (< 16 или >= 16)
  5. # f (< 16 или >= 16)
  6. age = float(input())
  7. gender = input() # m или f
  8.  
  9. if gender == "m":
  10.     # проверка за възрастта
  11.     if age < 16:
  12.         print("Master")
  13.     else:
  14.         print("Mr.")
  15. elif gender == "f":
  16.     # проверка за възрастта
  17.     if age < 16:
  18.         print("Miss")
  19.     else:
  20.         print("Ms.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement