共计 489 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,有多种方法可以读取数据。以下是一些常见的方法:
- 使用 open 函数打开文件,然后使用 read 方法读取文件中的数据:
file = open("data.txt", "r") # 打开文件
data = file.read() # 读取文件中的数据
file.close() # 关闭文件
- 使用 with 语句结合 open 函数,可以自动关闭文件:
with open("data.txt", "r") as file:
data = file.read() # 读取文件中的数据
- 读取 CSV 格式的数据,可以使用 csv 模块:
import csv
with open("data.csv", "r") as file:
csv_reader = csv.reader(file) # 创建 CSV 读取器
for row in csv_reader:
print(row) # 打印每一行数据
- 读取 JSON 格式的数据,可以使用 json 模块:
import json
with open("data.json", "r") as file:
data = json.load(file) # 加载 JSON 数据
这些方法可以根据不同的数据格式和需求进行选择和调整。
丸趣 TV 网 – 提供最优质的资源集合!
正文完