Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Python

At first, let's fuck Python before using it.

Pep8

Python code syntax format.

I hate to wrap a line when it exceeds 79 characters.

pep8 document

可以顺便了解一下flake8

Python internationalization

Babel用着不错。

Debug python code

def add(x, y):
    return x + y

a = 'abc'
b = 'efg'
import pdb
pdb.set_trace()
ab = add(a, b)
print ab

When you execute these code, the pdb debugger will appear.

You can use help in pdb to show available commands, and use help command to show detailed help message of the command.