Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. year = input('Enter a year of birth: ')) # Fix me
  2. birthyear = year # Fix me
  3.  
  4. age = 2020 - birthyear
  5.  
  6. month = 'June' # Fix me
  7. birthmonth = int(month)
  8.  
  9. # Fix me
  10. day = '12"
  11. birthday = int(day)
  12.  
  13. print('Your birthday is: ', birthmonth '/' birthday '/' birthyear) # Fix me
  14.  
  15. random_year = int(input('Enter a year in the future: '))
  16.  
  17. # Fix me x2
  18. Print('You will be', random_year - birthyear, 'years old!)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement