Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # this program should say hello and ask for your name.
  2.  
  3. print('Hello world!')
  4.  
  5. print('What is your name?') #ask for their name
  6.  
  7. myName = input()
  8. print('It is good to meet you, + myName')
  9. print('The length of your name is:')
  10. print('What is your age?') #ask for their age
  11. myAge = input ()
  12. print('You will be ' + str(int(myAge) +1) + ' in a year.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement