1. 循环 if, while, forbreak : 结束整个循环continue :跳出当前这次循环,但不结束整个循环else :结束整个循环后才执行,不能与break合用,但可以与continue合用. 2. bool 惰性求值,从左到右判断,只要出现一个false就返回. 3. 打开文件 # 常用方法 # 打开文件test.txt file = open('test.txt', 'r') # 读取文件 file.read() # 关闭文件 file.close() # with 方法(系…