溫馨提示×

如何使用Python的load函數(shù)加載數(shù)據(jù)

小樊
127
2024-08-13 13:38:35
欄目: 編程語言

要使用Python的load函數(shù)加載數(shù)據(jù),首先需要導(dǎo)入相應(yīng)的模塊。一般情況下,加載數(shù)據(jù)可以使用pickle模塊中的load函數(shù)或者json模塊中的load函數(shù)。

下面是一個(gè)使用pickle模塊加載數(shù)據(jù)的示例:

import pickle

# 從文件中加載數(shù)據(jù)
with open('data.pkl', 'rb') as file:
    data = pickle.load(file)
    
print(data)

下面是一個(gè)使用json模塊加載數(shù)據(jù)的示例:

import json

# 從文件中加載數(shù)據(jù)
with open('data.json', 'r') as file:
    data = json.load(file)
    
print(data)

在這兩個(gè)示例中,首先使用open函數(shù)打開文件,然后使用load函數(shù)加載數(shù)據(jù),并將數(shù)據(jù)存儲(chǔ)在變量中。最后打印出加載的數(shù)據(jù)。

0