Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # This programs says hello and asks for 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