对于文件的读写,一直都是一门编程语言中不可或缺的主题之一。接下来让我们一起看看使用Python如何进行文件的读取。
先给出一个需要读取的文本文件ex15_samples.txt
,内容如下:
This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.
把一头大象放进冰箱需要几步?答曰:3步。
- 打开冰箱;
- 把大象放入冰箱;
- 关上冰箱。
那么对于打开读文件需要几步?2步。
- 打开文件;
- 读出文件内容。
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from sys import argv
script, filename = argv
txt = open(filename)
print(f"Here's your file {filename}")
print(txt.read())
print("Type the filename again:")
file_again = input("> ")
txt_again = open(file_again)
print(txt_again.read())
运行结果如下:
使用Python读取文件就是这么简单,你说是吗?
小结
- 文件读取相关函数的初使用。