Advertisement
Enrro

User form

Aug 29th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. '''
  2. Created on 29/08/2014
  3. Obtener informacion de usuarion
  4. @author: A01221672
  5. '''
  6.  
  7. def ask_Username():
  8. print("Hi, how are you?. Tell me your name.")
  9. name = raw_input()
  10. print("nice to meet you " + name + " :D" )
  11. def ask_Userage():
  12. print("Hello how old are you?")
  13. age= input()
  14. print("What month were you born in numbers")
  15. month = input()
  16. print( 12*(age)+month)
  17.  
  18. ask_Userage()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement