#json序列化,只能处理简单的数据类型,如:字典.列表.字符串,类和函数等数据类型过于复杂,不支持序列化import jsondef sayhi(name): print('hello,', name)info = { 'name': 'whitesky', 'age': 25, 'func': sayhi}f = open('test.txt', 'w')# f.write(str(info))f.write(json.dumps(info))f.close()#json反序列化f = op…