DeaD_EyE

Don't Ask For Permission. Ask For Forgiveness.

Dec 18th, 2020 (edited)
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. def zahl_abfragen():
  2.     while True:
  3.         try:
  4.             return int(input("Wie alt bist du? "))
  5.         except ValueError:
  6.             print("Du musst eine ganze Zahl angeben.")
  7.  
Add Comment
Please, Sign In to add comment