第一章格式规范

一、头文件:

1.注释行#!/usr/bin/python3 # -- coding: UTF-8 --

2.导入模块行

导入整个模块,格式: import module

导入模块中全部函数,格式为: from module import *

二、标识符

标识符的首字符必须是字母或下划线,对大小写敏感。

三、保留字

33个保留字: ['False', 'None', 'True', 'and', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

四、注释

1.单行注释如:#第二个注释

2.多行注释如:"""第三注