User:ChipotlePickle/samples
From Wikipedia, the free encyclopedia
""" Just a sample of how to make code look OK. View the edit to see the source tag that makes it work. """ def hello(s): print "Hello %s" %(s) return None if __name__ == "__main__": hello("world")