FileNotFoundError: [WinError 2] 系统找不到指定的文件
是一个常见的错误,表示 Python 在尝试访问或打开一个文件时找不到该文件
以下是一些示例代码,展示如何正确地打开和读取文件:
# 使用绝对路径
file_path = "C:/path/to/your/file.txt"
try:
with open(file_path, 'r') as file:
content = file.read()
except FileNotFoundError:
print(f"文件 {file_path} 未找到")
# 使用相对路径
import os
current_directory = os.getcwd()
file_path = os.path.join(current_directory, "file.txt")
try:
with open(file_path, 'r') as file:
content = file.read()
except FileNotFoundError:
print(f"文件 {file_path} 未找到")
领取专属 10元无门槛券
手把手带您无忧上云