参考链接: http://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_style_rules/#indentation
需要特别注意的
==============
1. python会把(), {}里面的内容视为在一行上, 可以利用这个特点来格式化代码. 例如
- 将长的str分为两行显示, 并用()括起来, 中间不用加任何连接符
str = ('I am the first line'
'I an the second line')
- if (条件1
and 条件2)
2. 函数注释第一行顶行写.