Advertisement
here2share

# fix_raw_input.py

Apr 9th, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. # fix_raw_input.py
  2.  
  3. try: input = raw_input
  4. except: pass
  5. s = input("Prompt: ")
  6. print("You Entered: " + s)
  7. if s.lower() == 'abc': print 123
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement