Created
September 8, 2012 07:17
-
-
Save t2y/3672521 to your computer and use it in GitHub Desktop.
sample program how to use pep8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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