笨方法学Python-习题15-读取文件

对于文件的读写,一直都是一门编程语言中不可或缺的主题之一。接下来让我们一起看看使用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步。

  1. 打开冰箱;
  2. 把大象放入冰箱;
  3. 关上冰箱。

那么对于打开读文件需要几步?2步。

  1. 打开文件;
  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())

运行结果如下:

ex15_运行结果

使用Python读取文件就是这么简单,你说是吗?

小结

  1. 文件读取相关函数的初使用。

你可能感兴趣的:(笨方法学Python-习题15-读取文件)