Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. man = input ("what's your name mister")
  2. print("his name is "+man)
  3.  
  4. Traceback (most recent call last):
  5. File "<pyshell#0>", line 1, in <module>
  6. alex
  7. NameError: name 'alex' is not defined
  8.  
  9. man = raw_ input ("what's your name mister")
  10. print("his name is " + man)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement