Skip to content

Instantly share code, notes, and snippets.

@t2y
Created September 8, 2012 07:17
Show Gist options
  • Save t2y/3672521 to your computer and use it in GitHub Desktop.
Save t2y/3672521 to your computer and use it in GitHub Desktop.
sample program how to use pep8
import sys, os
class A(object): pass
def func(x, y = 2):
return x, y
def main():
l = [1,2, 3, 4, 5]
d = {'a': 1, 'b':2}
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment