# 打开文件 f = open('test.txt', 'r') # 读取文件内容 content = f.read() # 输出文件内容 print(content) # 关闭文件 f.close()
# 打开文件 f = open('test_write.txt', 'w') # 写入文件内容 f.write('Hello, World!') # 关闭文件 f.close()
# 使用with语句打开文件 with open('test_with.txt', 'w') as f: f.write('Hello, World!')
# 打开文件并进行追加操作 with open('test_append.txt', 'a') as f: f.write('Hello, World Again!')
标签: 网购