Advertisement
Guest User

Untitled

a guest
Feb 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. # This program says hello and asks me my name
  2.  
  3. print ('Hello World!')
  4. print ('What is your name?') # Ask for their name
  5. myName = input()
  6. print ('It is good to meet you, ' + myName)
  7. print ('The length of your name is:')
  8. print(len(myName))
  9. print ('What is your age?') # Ask for their age
  10. myAge = input()
  11. print ('You will be ' + str(int(myAge) + 1) ' in a year.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement