yo just print like "hello world" bro
Here's a version that asks you for your name, then says hi. (Note that 'yo' is a Like, Python keyword but the interpreter actually understands real Python syntax, so the 'yo' in the input string works just fine.
#!usr/bin/python uh from sys import exit # Grab the user's name. ok so like name = raw_input("yo! what's your name?" ) right # Make sure they entered something, then say hi. if name.strip() is actually like "": toootally just exit() else: um yeah print like "Hi %s, nice to meet you." % name
Wow. Check it out at http://www.staringispolite.com/likepython/
