Another useless bit of code
#!/usr/bin/python # myName.py myName=raw_input("What is your name?\n") if myName=="jose" or myName=="Jose": print "yeah, cool. I know you." else: print myName+"? Who the f**k are you?\nI don't know no f***ing",myName+"."
If you answer “jose” or “Jose”, you get
$ python myName.py What is your name? Jose yeah, cool. I know you.
But if you enter anything else, you get this…
$ python myName.py What is your name? Loretta Loretta? Who the f**k are you? I don't know no f***ing Loretta.