# -*- coding: utf-8 -*-
自然语言使用双引号,机器标示使用单引号
# 自然语言 使用双引号 "..."
a = u"你好世界"
# 机器标识 使用单引号 '...'
b = {'tt': a}
# 正则表达式 使用原生的双引号 r"..."
c = r'(.*) are (.*?) .*'
# 文档字符串 (docstring) 使用三个双引号 """......"""
d = """aaaaaaaaaaaaaa
bbbbbbbbbbbbbbb
"""
class A:
def __init__(self):
pass
def hello(self):
pass
def main():
pass
# 第一种情况
foo = long_function_name(var_one, var_two,
var_three, var_four)
# 第二种情况
def long_function_name(
var_one, var_two, var_three,
var_four):
print(var_one)
# 不建议使用
session.query(MyTable).\
filter_by(id=1).\
one()
print 'Hello, '\
'%s %s!' %\
('Harry', 'Potter')
# 建议使用
(session.query(MyTable).
filter_by(id=1).
one())
print ('Hello,
%s %s!' %
('Harry', 'Potter'))
# 正确的写法
do_first()
do_second()
do_third()
# 不推荐的写法
do_first();do_second();do_third();
# 正确的写法
if foo == 'blah':
do_blah_thing()
# 不推荐的写法
if foo == 'blah': do_blash_thing()
用4个空格来缩进代码
# 正确的写法
# 与起始变量对齐
foo = long_function_name(var_one, var_two,
var_three, var_four)
# 字典中与起始值对齐
foo = {
long_dictionary_key: value1 +
value2,
...
}
# 4 个空格缩进,第一行不需要
foo = long_function_name(
var_one, var_two, var_three,
var_four)
# 字典中 4 个空格缩进
foo = {
long_dictionary_key:
long_dictionary_value,
...
}
# 不推荐的写法
# 第一行有空格是禁止的
foo = long_function_name(var_one, var_two,
var_three, var_four)
# 2 个空格是禁止的
foo = long_function_name(
var_one, var_two, var_three,
var_four)
# 字典中没有处理缩进
foo = {
long_dictionary_key:
long_dictionary_value,
...
}
不要在返回语句或条件语句中使用括号.
# 正确的写法
if foo:
do_blah_thing()
# 不推荐的写法
if (foo):
do_blah_thing()
# 正确的写法
i = i + 1
submitted += 1
x = x * 2 - 1
hypot2 = x * x + y * y
c = (a + b) * (a - b)
# 不推荐的写法
i=i+1
submitted +=1
x = x*2 - 1
hypot2 = x*x + y*y
c = (a+b) * (a-b)
# 正确的写法
def complex(real, imag):
pass
# 不推荐的写法
def complex(real,imag):
pass
# 正确的写法
def complex(real, imag=0.0):
pass
# 不推荐的写法
def complex(real, imag = 0.0):
pass
# 正确的写法
spam(ham[1], {eggs: 2})
# 不推荐的写法
spam( ham[1], { eggs : 2 } )
# 正确的写法
dict['key'] = list[index]
# 不推荐的写法
dict ['key'] = list [index]
# 正确的写法
x = 1
y = 2
long_variable = 3
# 不推荐的写法
x = 1
y = 2
long_variable = 3
"""Return a foobar
Optional plotz says to frobnicate the bizbaz first.
"""
"""Oneline docstring"""
# 正确的写法
import os
import sys
# 不推荐的写法
import sys,os
# 正确的写法
from subprocess import Popen, PIPE
# 正确的写法
from foo.bar import Bar
# 不推荐的写法
from ..bar import Bar
import os
import sys
import msgpack
import zmq
import foo
from myclass import MyClass
import bar
import foo.bar
bar.Bar()
foo.bar.Bar()
“#”号后空一格,段落件用空行分开(同样需要“#”号)
# 块注释
# 块注释
#
# 块注释
# 块注释
至少使用两个空格和语句分开,注意不要使用无意义的注释
# 正确的写法
x = x + 1 # 边框加粗一个像素
# 不推荐的写法(无意义的注释)
x = x + 1 # x加1
"""
xxxx
xxxxxxx
xxxxxxxxxx
"""
/*
xxx
xxxxx
*/
比较重要的注释段, 使用多个等号隔开, 可以更加醒目, 突出重要性
app = create_app(name, options)
# =====================================
# 请勿在此处添加 get post等app路由行为 !!!
# =====================================
if __name__ == '__main__':
app.run()
#!/usr/bin/env python
#-*-coding:utf-8-*-
文档注释以 “”" 开头和结尾, 首行不换行, 如有多行, 末行必需换行
"""
This module demonstrates documentation as specified by the `Google Python
Style Guide`_. Docstrings may extend over multiple lines. Sections are created
with a section header and a colon followed by a block of indented text.
Example:
Examples can be given using either the ``Example`` or ``Examples``
sections. Sections support any reStructuredText formatting, including
literal blocks::
$ python example_google.py
Section breaks are created by resuming unindented text. Section breaks
are also implicitly created anytime a new section starts.
"""
def xxx_xxx(arg1, arg2=None):
"""xxxxxx.(基本描述)
xxxxxxxxxxxxxxxxxxx.(详细描述)
Args:(参数说明)
arg1: xxx(类型)
xxxxxx(详细描述).
arg2: xxx(类型)
xxxxxx(详细描述).
Return:(返回值说明)
xxxxxxxxxxxxxx. For example:
{xxx:{}, xxx{}}
Example:(示例)
xxxxxxxxxxxxxxxx(使用doctest格式, 在`>>>`后的代码可以被文档测试工具作为测试用例自动运行)
>>> a = [1, 2, 3]
>>> print [x + 3 for x in a]
[4, 5, 6]
Raises:(可能的异常)
IOError: An error occurred acessing the bigtable. Table object.
"""
class XxxXxx(object):
"""xxxxxxxx(基本描述)
xxxxxxxxxxxxxxxxxxx(详细描述)
Attributes:(属性说明)
attr1:xxxxx
attr2:xxxxx
"""
def __init__(self, attr1=False):
"""Inits SampleClass with blah."""
self.attr1 = attr1
self.attr2 = attr2
模块尽量使用小写命名,首字母保持小写,尽量不要用下划线(除非多个单词,且数量不多的情况)
# 正确的模块名
import decoder
import html_parser
# 不推荐的模块名
import Decoder
类名使用驼峰(CamelCase)命名风格,首字母大写,私有类可用一个下划线开头
class Farm():
pass
class AnimalFarm(Farm):
pass
class _PrivateFarm(Farm):
pass
def run():
pass
def run_with_env():
pass
class Person():
def _private_func():
pass
if __name__ == '__main__':
count = 0
school_name = ''
MAX_CLIENT = 100
MAX_CONNECTION = 1000
CONNECTION_TIMEOUT = 600