添加索引内容和 with 关键字

This commit is contained in:
YuCheng Hu
2021-03-11 10:40:37 -05:00
parent 9fdf9e24b8
commit 2c5c8229c7
2 changed files with 33 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Python script to Read file from JSON and convert to YAML
# Author - HoneyMoose (https://www.ossez.com)
import json
json_filename = 'resources/honeymoose_test.json'
# Read and process JSON
with open(json_filename) as json_file:
data = json.load(json_file)
print(type(data))
for data_dict in data:
label_id = data_dict['label_id']
print(str(label_id))
print(json_file.closed)