1、返回要打印的文本字符串,既容易阅读,又是语法上正确的Python代码。
importpprint cats=[{'name':'Zophie','desc':'chubby'},{'name':'Pooka','desc':'fluffy'}] pprint.pformat(cats) fileObj=open('myCats.py','w') fileObj.write('cats='+pprint.pformat(cats)+'\n') fileObj.close()
2、如果来自pprint.pformat()字符串保存为.py文件是可导入的模块。
importmyCats myCats.cats myCats.cats[0] myCats.cats[0]['name']
以上是python pprint.pformat()函数的使用,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。