1.BIF=内置函数
2.dir(_ _builtins_ _) #python内置函数表
3.变量名不能以数字开头
4.转义符号转义:A.‘let‘s go‘ >= ‘let\‘s go‘
B."letl‘s go"
5.string = ‘c:\now‘
print(sting) >=c:
ow 应该写成string = r‘c:\now #原始字符串:字符串前加r
6.多行换行#取代\n. >= ‘‘‘内容‘‘‘
7.import random.randint(1,10) #导入模块random并执行randint函数, (#返回一随机整数)