Python判斷一個(gè)JSON文件是否為空

admin Python評(píng)論411字?jǐn)?shù) 480閱讀模式

首先,你需要導(dǎo)入`json`模塊:

import json

然后,使用`json`模塊的`load()`方法將JSON文件加載為Python對(duì)象。如果加載后得到的對(duì)象為空,表示JSON文件為空。

def is_json_file_empty(file_path):
   with open(file_path, 'r') as file:
       json_data = json.load(file)
       if json_data:
           return False
       else:
           return True

最后,通過傳入JSON文件的路徑調(diào)用該函數(shù)即可判斷JSON文件是否為空:

json_file_path = "path_to_json_file.json" # 替換為你的JSON文件路徑
is_empty = is_json_file_empty(json_file_path)
if is_empty:
    print("JSON文件為空")
else:
    print("JSON文件不為空")

請(qǐng)注意,這個(gè)方法假設(shè)你的JSON文件已經(jīng)存在且格式正確。如果文件不存在或者文件格式不正確,可能會(huì)引發(fā)異常。在實(shí)際使用中,你可能需要添加相應(yīng)的異常處理代碼。

版權(quán)聲明:文章圖片資源來源于網(wǎng)絡(luò),如有侵權(quán),請(qǐng)留言刪除!!!
廣告也精彩
admin
  • 本文由 發(fā)表于 2023年9月14日 14:42:58
  • 轉(zhuǎn)載請(qǐng)務(wù)必保留本文鏈接:http://yudch.cn/11079.html
匿名

發(fā)表評(píng)論

匿名網(wǎng)友 填寫信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: