在python中用string函数写入txt文本文件,I love python字符串
时间: 2024-02-21 10:58:23
浏览: 43
以下是使用Python的示例[代码](https://geek.csdn.net/educolumn/1572ef9b473b4e00f6b2bf6d428b7c27?spm=1055.2569.3001.10083):
```python
str = "I love python"
with open("[output](https://geek.csdn.net/educolumn/3fa40697d361ab41848a3d891b656e90?spm=1055.2569.3001.10083).txt", "w") as outfile:
outfile.write(str)
print("写入成功!")
这段[代码](https://geek.csdn.net/educolumn/1572ef9b473b4e00f6b2bf6d428b7c27?spm=1055.2569.3001.10083)使用`with open()`语句打开一个名为"output.txt"的文件,使用"w"模式表示写入模式。然后使用`write()`方法将[字符串](https://geek.csdn.net/educolumn/ba94496e6cfa8630df5d047358ad9719?dp_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6NDQ0MDg2MiwiZXhwIjoxNzA3MzcxOTM4LCJpYXQiOjE3MDY3NjcxMzgsInVzZXJuYW1lIjoid2VpeGluXzY4NjQ1NjQ1In0.RrTYEnMNYPC7AQdoij4SBb0kKEgHoyvF-bZOG2eGQvc&spm=1055.2569.3001.10083)写入文件中,最后`with`语句块结束时会自动关闭文件。如果文件打开失败,则会[抛出异常](https://geek.csdn.net/educolumn/0c5d7c52946e1fcb9864ce12cfafc8b0?spm=1055.2569.3001.10083)。如果写入成功,则输出写入成功的信息。
相关问题
string函数写入txt文本文件,I love python字符串
以下是使用C++的示例代码:
```c++
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string str = "I love python";
ofstream outfile("output.txt");
if (outfile.is_open()) {
outfile << str;
outfile.close();
cout << "写入成功!" << endl;
} else {
cout << "写入失败!" << endl;
return 0;
这段代码使用string类型的变量`str`存储要写入的字符串,然后使用`ofstream`类打开一个名为"out