Advertisement
Dylan111111

Untitled

Oct 23rd, 2019
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. def getDate (userGeboortedatum):
  2. dag = userGeboortedatum(0, 1)
  3. maand = userGeboortedatum(3, 4)
  4. jaar = userGeboortedatum(6, 9)
  5. geboortedatum = (jaar, maand, dag)
  6. print(geboortedatum)
  7.  
  8. userGeboortedatum = (input("Enter your date of birth (dd-mm-yyyy) : "))
  9. userGeboortedatumFunctie = getDate(userGeboortedatum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement