Cheat Sheets

A collection of cheat sheets.

Hosted on GitHub Pages — Theme by mattgraham

Hello World

def hello():
    print("Hello World!")

if __name__ == "__main__":
    hello()