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

python eval函数,将列表样式的字符串转化为列表

时间:2018-06-14 14:39:29      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:list   str   strong   style   val   样式   pytho   microsoft   eva   

python eval函数,将列表样式的字符串转化为列表

>>> str_1 = ‘[1,2,3,4,5,6]‘
>>> type(str_1)
<type ‘str‘>
>>> list_1 = eval(str_1)
>>> list_1
[1, 2, 3, 4, 5, 6]
>>> type(list_1)
<type ‘list‘>
>>>

python eval函数,将列表样式的字符串转化为列表

标签:list   str   strong   style   val   样式   pytho   microsoft   eva   

原文地址:https://www.cnblogs.com/qiu-hua/p/9182444.html

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