Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. name = raw_input("Ka heita du? ")
  2. movie = raw_input("Ka e din favorittfilm? ")
  3. tv_series = raw_input("Ka e din favorittserie? ")
  4. why = raw_input("Koffer e du saa fan av akkurat "+movie + " og " + tv_series + "? ")
  5. how_long = raw_input("Siden naar har du likt " + movie + " og " + tv_series + "? ")
  6. try:
  7. aar = 2019 - (int(how_long))
  8. except ValueError:
  9. print("FEIL!! AARSTALL MAA VAARE TALL")
  10. exit(0)
  11.  
  12. print(str(aar) +" e antall aar du har likt " + movie + "og" + tv_series + "fordi" + why)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement