1. 使用`open()`函数以写入模式(`w`)打开文件,然后使用`write()`方法写入数据,最后使用`close()`方法关闭文件。
with open('example.txt', 'w') as file:file.write('Hello, World!')
2. 使用`with open()`语句打开文件,这样可以自动关闭文件,无需显式调用`close()`函数。
with open('example.txt', 'w') as file:file.write('Hello, World!')
3. 使用`open()`函数以追加模式(`a`)打开文件,然后使用`write()`方法写入数据,这样可以在文件末尾添加内容而不覆盖之前的内容。
with open('example.txt', 'a') as file:file.write('Hello, World!')
4. 使用`writelines()`方法可以一次性写入多行数据。

lines = ['Line 1\n', 'Line 2\n', 'Line 3\n']with open('example.txt', 'w') as file:file.writelines(lines)
5. 使用`print()`函数也可以将数据写入文件,但这种方式会将数据输出到标准输出,并自动添加换行符。
with open('example.txt', 'w') as file:print('Hello, World!', file=file)
6. 使用`csv`模块或`json`模块可以更方便地写入结构化数据到文件。
import csvdata = [['Name', 'City', 'Digital', 'Number']]data.append(['Alice', 'New York', 1, 100])data.append(['Bob', 'Los Angeles', 2, 200])with open('data.csv', 'w', newline='', encoding='utf-8') as csvfile:writer = csv.writer(csvfile)writer.writerows(data)
请根据你的需求选择合适的方法来向文件写入数据
