Advertisement
Guest User

Untitled

a guest
May 20th, 2018
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. print('Hello World!')
  2. print('What is your name?')
  3.  
  4. myName = raw_input()
  5.  
  6. print('It is good to meet you, ' + myName)
  7. print('The length of your name is:')
  8. print(len(myName))
  9.  
  10. print('What is your age?') # Ask for their age
  11.  
  12. myAge = raw_input()
  13.  
  14. print('You will be ' + (myAge + 1) + ' in a year.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement