import keyword print(keyword.kwlist) ['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', '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']
6.数据类型 int(整型)、float(浮点型)、str(字符串)、bool(布尔型)、dict(字典)、list(列表)、tuple(元组) 查看数据类型:print(type(“zjx”)) 数据类型转换: str(1):把int 1转换成字符串1 int(1.5):把float 0.5转换成整数类型1 int("zjx"):无法转换。任何数字可以转换成字符串,反之不行。 bool(0.3):True。布尔类型只有True和False,数字非0是True,0、“”是False float(2):把int 2转换成浮点型 2.0