At first, let's fuck Python before using it.
Python code syntax format.
I hate to wrap a line when it exceeds 79 characters.
可以顺便了解一下flake8。
Babel用着不错。
def add(x, y):
return x + y
a = 'abc'
b = 'efg'
import pdb
pdb.set_trace()
ab = add(a, b)
print abWhen 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.