Python文件與數據存取可以通過多種方式實現,以下是一些常用的方法:
# 讀取文件內容
with open('file.txt', 'r') as file:
data = file.read()
# 寫入文件內容
with open('file.txt', 'w') as file:
file.write('Hello, world!')
import pickle
# 將數據保存到文件
data = {'name': 'Alice', 'age': 30}
with open('data.pkl', 'wb') as file:
pickle.dump(data, file)
# 從文件中加載數據
with open('data.pkl', 'rb') as file:
loaded_data = pickle.load(file)
print(loaded_data)
import json
# 將數據保存到文件
data = {'name': 'Bob', 'age': 25}
with open('data.json', 'w') as file:
json.dump(data, file)
# 從文件中加載數據
with open('data.json', 'r') as file:
loaded_data = json.load(file)
print(loaded_data)
這些是常用的Python文件與數據存取方法,可以根據實際需求選擇合適的方式進行操作。