Skip to content

Instantly share code, notes, and snippets.

@wrunk
Created June 24, 2011 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wrunk/1045372 to your computer and use it in GitHub Desktop.
Save wrunk/1045372 to your computer and use it in GitHub Desktop.
Simple python script for bustin
#!/usr/bin/env python
# The above line will cause this script to be run using the program 'python'
# Lines that start with a hash are comments for fun
# The interpreter wont read these.
def print_function():
print '''
******* * *
* * *
**** * *
* * *
* * * * '''
# __name__ is a special variable. it will be equal to '__main__'
# When you run this script on the command line
if __name__ == '__main__':
# The below line invokes our above print function :)
# It will cause things to print
print_function()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment