1、打开文件test.txt,如果文件不存在,则创建文件; 2、向test.txt中写入以下三行内容: Python内置函数open()用来打开文件 其语法为: myfile = open(filename) 3、读取test.txt中“myfile = open(filename)”并输出。
时间: 2023-12-25 22:02:45 浏览: 89
Python中使用内置的open函数来读取txt文本文件
代码如下:
```python
# 打开文件test.txt,如果文件不存在,则创建文件
with open('test.txt', 'w+') as f:
# 向test.txt中写入以下三行内容
f.write('Python内置函数open()用来打开文件\n')
f.write('其语法为:\n')
f.write('myfile = open(filename)\n')
# 读取test.txt中“myfile = open(filename)”并输出
with open('test.txt', 'r') as f:
for line in f:
if 'myfile = open(filename)' in line:
print(line)
```
运行结果为:
```
myfile = open(filename)
```
阅读全文