第14064题 单选题
Python程序中向文件写入和读取JSON数据的空格处应填入的json模块方法是?
import json
import csv
fam = {'name':'xiaoming','age':18,'gender':'nan'}
with open('family.csv','w') as f:
    json.    (fam,f)
with open('family.csv','r') as f1:
    read1 = json.    (f1)
    print(read1)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析