程序设计简单框架及模板
代码的本质
构成代码的基本单元
``` NUMBER:数字 整数、小数 整数:int 浮点数:float type(2/2) float type(2//2) int bool 布尔类型:表示真、假 complex复数 ```Python的关键字
>>> import keyword >>> print(keyword.kwlist)['False', 'None', 'True', 'and', 'as', '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']