python怎么转换数据类型
发布时间:2020年11月20日 23:22:19
来源:环球青藤
点击量:845
【摘要】在处理数据的时候,经常需要转换数据的格式,来方便数据遍历等操作。下面我们来看一下Python中的几种数据类型转换。1、字符串转字典: dict
在处理数据的时候,经常需要转换数据的格式,来方便数据遍历等操作。下面我们来看一下Python中的几种数据类型转换。
1、字符串转字典:
dict_string = "{'name':'pnux','age':18}"
to_dict = eval(dict_string)
print(type(to_dict))
也可以用json进行转换
import json #如果是Python2.6应该是simplejson
dict_string = "{'name':'pnux','age':18}"
to_dict = json.loads(dict_string.replace("‘","“")) #这里需要将字符串的单引号转换成双引号,不然json模块会报错的
print(type(to_dict))
2、字典转字符串
同样也可以使用json
import json
dict_1 = {'name':'pnux','age':18}
dict_string = json.dumps(dict_1)
print(type(dict_string))
当然也可以直接使用str强制转换
dict_1 = {'name':'pnux','age':18}
dict_string = str(dict_1)
print(type(dict_string))
3、字符串转列表
指定分隔符
string1 = "1,2,3,4,5,'aa',12"
print(type(string1.sppt(',')))
如果已经是列表格式,直接使用eval即可
string2 = "[1,2,3,4,5,'aa',12]"
print(type(eval(string2)))
4、列表转字符串
直接使用str强制转换
print(type(str([1,2,3,4,5,'aa',12])))
指定分隔符,注意这里的列表需要都是字符串类型的,不然拼接的时候会报错
print(type("--".join(['a','b','c'])))
5、列表转字典
两个列表,pst1 = ['k1','k2','k3'] 、 pst2 = [1,2,3] ,转换成字典{’k1‘:1,'k2':2,'k3':3}
pst1 = ['k1','k2','k3']
pst2 = [1,2,3]
print(dict(zip(pst1,pst2)))
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是小编分享的关于python怎么转换数据类型的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!
上一篇:怎么查看python版本?
下一篇:python中x[::]什么意思
就业培训申请领取
环球青藤
官方QQ群扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群
最新文章
Python编程各地入口
环球青藤官方微信服务平台
刷题看课 APP下载
免费直播 一键购课
代报名等人工服务
Python编程热点排行