码迷,mamicode.com
首页 > 编程语言 > 详细

Python日志模块Logger

时间:2018-04-11 21:48:55      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:coding   处理   odi   python   style   字符   with open   span   nbsp   

日志模块的用法

 

 

json部分

 

先开一段测试代码:注意  str可以直接处理字典   eval可以直接将字符串转成字典的形式

dic={‘key1‘:‘value1‘,‘key2‘:‘value2‘}

data=str(dic)#字典直接转成字符串

print(type(data),data)

#
# with open(‘db.txt‘,‘w‘,encoding=‘utf-8‘) as f:
# f.write(str(dic))
#

with open(‘db.txt‘,‘r‘,encoding=‘utf-8‘) as f:
data=f.read()
print(data,type(data))
dic2=eval(data)
print(dic2,type(dic2))

 

Python日志模块Logger

标签:coding   处理   odi   python   style   字符   with open   span   nbsp   

原文地址:https://www.cnblogs.com/nodchen/p/8798456.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!