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

Python使用eval强制转换字符串为字典时报错:File "<string>", line 1, in <module> NameError: name 'nan' is not defined

时间:2014-08-28 16:05:49      阅读:1084      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   io   ar   for   div   

  文本中保存的内容为:

{
    QQQ: [0.067, 0.167, 0.2, 0.033, 0.233, 0.267, 0.1, 0.133], 
    TTT: [0.5, 0.375, 0.25, 0.3, 0.6, 0.333, 0.857, 0.636, 0.667, 0.556]
}

   用eval转换为字符串时报错:

File "test.py", line 43, in d1
    data = eval(infile.readline())
  File "<string>", line 1, in <module>
NameError: name nan is not defined

  解决:

globals = {
    nan: 0   
}

# -----------
data = eval(infile.readline(), globals)

 

  参考资料:

  Python中,用eval强制将字符串转换为字典变量时候出错:NameError: name ‘null’ is not defined

 

Python使用eval强制转换字符串为字典时报错:File "<string>", line 1, in <module> NameError: name 'nan' is not defined

标签:style   blog   http   color   使用   io   ar   for   div   

原文地址:http://www.cnblogs.com/zifenger/p/3941751.html

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