ABIX_Edukacja

Untitled

Feb 5th, 2020
404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. print("Cześć")
  2. print("Jestem Python")
  3. imie = input("Imię: ")
  4. print(f"Siemka {imie}")
  5. rok = 2020
  6. urodzenie = input("Rok ur.: ")
  7. urodzenie = int(urodzenie)
  8. wiek = rok - urodzenie
  9. print(f"OK, masz {wiek} lat.")
  10. if wiek >= 17:
  11.     print("OK na prawo jazdy")
  12.     print(f"I to od {wiek - 17} lat")
  13.     if wiek > 35:
  14.         print("AAAAAA")
  15.         if wiek > 32:
  16.             print("CCCCC")
  17.     if wiek > 31:
  18.         print("BBBBBB")
  19. else:
  20.     print(f"Jeszcze {17 - wiek} lat")
  21.     print("Koniec.")
Advertisement
Add Comment
Please, Sign In to add comment