apl-mhd

pythonflowControl

Jul 30th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. name = "marry"
  2.  
  3. password = 'incorrect'
  4.  
  5. inputname = raw_input("Please enter your name\n")
  6.  
  7. if name == inputname:
  8.     passinput = raw_input("please enter your password\n")
  9.     if password == passinput:
  10.         print("code is sexy")
  11.     else:
  12.         print "hacker detected"
  13. else:
  14.    
  15.     print("bla bla what the fuck")
Add Comment
Please, Sign In to add comment