要使用Python讀取數據,你可以使用以下幾種方法:
open()
函數打開文件,然后使用read()
方法讀取數據。例如:with open('data.txt', 'r') as file:
data = file.read()
csv
模塊來讀取數據。例如:import csv
with open('data.csv', 'r') as file:
reader = csv.reader(file)
for row in reader:
print(row) # 每行列表打印出來
json
模塊來讀取數據。例如:import json
with open('data.json', 'r') as file:
data = json.load(file)
這些是使用Python讀取數據的一些基本方法,具體使用哪種方法取決于你要讀取的數據類型。記得在讀取完數據后,關閉文件以釋放資源。