文件操作
''' w write mode r read mode a append mode ''' https://www.runoob.com/python/file-methods.html # 创建文件 open('xxx.txt', 'w').close() # 经测试,不需要+号
''' w write mode r read mode a append mode ''' https://www.runoob.com/python/file-methods.html # 创建文件 open('xxx.txt', 'w').close() # 经测试,不需要+号