Python 3 介绍(十三)-- Python处理文件

目录

文件的基本操作

1. 打开文件

示例:

1.1 文件模式

示例:

1.2 文件的关闭

示例:

文件的读取方法

2.1 read() 方法

示例:

2.2 readline() 方法

示例:

2.3 readlines() 方法

示例:

文件的写入方法

3.1 write() 方法

示例:

3.2 writelines() 方法

示例:

文件的其他方法

4.1 seek() 方法

示例:

4.2 tell() 方法

示例:

4.3 truncate() 方法

示例:

文件的路径和目录操作

5.1 os.path.exists() 方法

示例:

5.2 os.path.getsize() 方法

示例:

5.3 os.path.join() 方法

示例:

文件的异常处理

示例:

总结


 

在 Python 3 中,处理文件是一项常见的任务,涉及到文件的打开、读取、写入、关闭等操作。Python 提供了多种方法来操作文件,下面将详细介绍这些方法及其使用方法,并给出相应的示例。

文件的基本操作

1. 打开文件

使用 open() 函数可以打开文件,并返回一个文件对象。文件对象提供了用于读写文件的方法。

示例:

 

python

深色版本

1# 以写入模式打开文件
2with open("example.txt", "w") as file:
3    file.write("Hello, this is a test.")
4
5# 以读取模式打开文件
6with open("example.txt", "r") as file:
7    content = file.read()
8    print(content)

1.1 文件模式

  • 'r':只读模式,默认模式。
  • 'w':写入模式,如果文件存在则会覆盖,如果不存在则创建。
  • 'a':追加模式,如果文件存在则在末尾追加,如果不存在则创建。
  • 'b':二进制模式。
  • '+':更新模式,允许读写。

示例:

 

python

深色版本

1# 以写入和读取模式打开文件
2with open("example.txt", "w+") as file:
3    file.write("First line.\n")
4    file.seek(0)  # 移动到文件开头
5    content = file.read()
6    print(content)

1.2 文件的关闭

使用完文件后应该关闭文件,可以手动关闭,也可以使用 with 语句自动关闭。

示例:

 

python

深色版本

1file = open("example.txt", "w")
2file.write("Hello, this is a test.")
3file.close()
4
5# 使用 with 语句自动关闭文件
6with open("example.txt", "w") as file:
7    file.write("Hello, this is a test.")

文件的读取方法

2.1 read() 方法

读取文件的所有内容。

示例:

 

python

深色版本

1with open("example.txt", "r") as file:
2    content = file.read()
3    print(content)

2.2 readline() 方法

每次读取文件的一行。

示例:

 

python

深色版本

1with open("example.txt", "r") as file:
2    line = file.readline()
3    while line:
4        print(line.strip())  # 去除行尾的换行符
5        line = file.readline()

2.3 readlines() 方法

读取文件的所有行并返回一个列表。

示例:

 

python

深色版本

1with open("example.txt", "r") as file:
2    lines = file.readlines()
3    for line in lines:
4        print(line.strip())

文件的写入方法

3.1 write() 方法

写入字符串到文件。

示例:

 

python

深色版本

1with open("example.txt", "w") as file:
2    file.write("Hello, this is a test.")

3.2 writelines() 方法

写入一个字符串列表到文件。

示例:

 

python

深色版本

1lines = ["Hello, this is a test.\n", "This is another line.\n"]
2with open("example.txt", "w") as file:
3    file.writelines(lines)

文件的其他方法

4.1 seek() 方法

移动文件指针到指定位置。

示例:

 

python

深色版本

1with open("example.txt", "r+") as file:
2    file.write("Hello, this is a test.")
3    file.seek(0)
4    content = file.read()
5    print(content)

4.2 tell() 方法

获取当前文件指针的位置。

示例:

 

python

深色版本

1with open("example.txt", "r") as file:
2    file.read(5)
3    position = file.tell()
4    print(position)  # 输出当前位置

4.3 truncate() 方法

截断文件,使其长度变为指定的字节数。

示例:

 

python

深色版本

1with open("example.txt", "w+") as file:
2    file.write("Hello, this is a test.")
3    file.seek(5)
4    file.truncate()
5    file.seek(0)
6    content = file.read()
7    print(content)  # 输出 "Hello"

文件的路径和目录操作

虽然 open() 函数主要用于文件的读写,但涉及到文件路径和目录的操作时,通常会结合使用 os 模块提供的方法。

5.1 os.path.exists() 方法

检查文件或目录是否存在。

示例:

 

python

深色版本

1import os
2if os.path.exists("example.txt"):
3    print("文件存在")
4else:
5    print("文件不存在")

5.2 os.path.getsize() 方法

获取文件的大小。

示例:

 

python

深色版本

1import os
2size = os.path.getsize("example.txt")
3print(size)  # 输出文件大小

5.3 os.path.join() 方法

拼接路径。

示例:

 

python

深色版本

1import os
2path = os.path.join("folder", "subfolder", "file.txt")
3print(path)  # 输出 "folder/subfolder/file.txt"

文件的异常处理

在处理文件时,可能会遇到各种异常,如文件不存在、权限错误等。使用 try...except 语句可以捕获并处理这些异常。

示例:

 

python

深色版本

1try:
2    with open("example.txt", "r") as file:
3        content = file.read()
4        print(content)
5except FileNotFoundError:
6    print("文件未找到")
7except IOError:
8    print("读取文件时发生错误")

总结

Python 提供了丰富的文件操作方法,从简单的文件读写到复杂的文件指针移动和截断等。通过掌握这些方法,你可以更有效地处理文件相关的任务。无论是简单的文本处理还是更复杂的文件管理系统开发,了解这些基本的文件操作方法都是非常有帮助的

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值