python string与list,tuple,dict相互转换
程序员文章站
2024-03-23 17:55:04
...
#转字符串方法str()
#字符串转list,tuple,dict方法eval()
a = [1,2,3]
b = (1,2,3)
c = {1:1,2:2,3:3}
print("a",type(a),a)
print("b",type(b),b)
print("c",type(c),c)
a_s = str(a)
b_s = str(b)
c_s = str(c)
print("a_s",type(a_s),a_s)
print("b_s",type(b_s),b_s)
print("c_s",type(c_s),c_s)
a_s_l = eval(a_s)
b_s_t = eval(b_s)
c_s_d = eval(c_s)
print("a_s_l",type(a_s_l),a_s_l)
print("b_s_t",type(b_s_t),b_s_t)
print("c_s_d",type(c_s_d),c_s_d)
输出结果
a <class 'list'> [1, 2, 3]
b <class 'tuple'> (1, 2, 3)
c <class 'dict'> {1: 1, 2: 2, 3: 3}
a_s <class 'str'> [1, 2, 3]
b_s <class 'str'> (1, 2, 3)
c_s <class 'str'> {1: 1, 2: 2, 3: 3}
a_s_l <class 'list'> [1, 2, 3]
b_s_t <class 'tuple'> (1, 2, 3)
c_s_d <class 'dict'> {1: 1, 2: 2, 3: 3}
上一篇: 简单题--589. N叉树的前序遍历
下一篇: spring5之新功能
推荐阅读
-
python string与list,tuple,dict相互转换
-
JSON的String字符串与Java的List列表对象的相互转换
-
JSON的String字符串与Java的List列表对象的相互转换
-
Python中列表list以及list与数组array的相互转换实现方法
-
Python中列表list以及list与数组array的相互转换实现方法
-
python实现字典(dict)和字符串(string)的相互转换方法
-
python实现字典(dict)和字符串(string)的相互转换方法
-
python3 字符串/列表/元组(str/list/tuple)相互转换方法及join()函数的使用
-
python string与bytes定义,相互转换
-
python中numpy数组与list相互转换实例方法