python怎么将字符串转换为数字
【摘要】python如何将列表中的字符串转为数字?具体方法如下:有一个数字字符的列表:numbers=[& 39;1& 39;,& 39;5& 39;,& 39;10& 39;,& 39;8& 39;]
python如何将列表中的字符串转为数字?具体方法如下:
有一个数字字符的列表:
numbers = ['1', '5', '10', '8']
想要把每个元素转换为数字:
numbers = [1, 5, 10, 8]
用一个循环来解决:
new_numbers = [];
for n in numbers:
new_numbers.append(int(n));
numbers = new_numbers;
有没有更简单的语句可以做到呢?
1、遍历
numbers = [ int(x) for x in numbers ]
2、Python2.x,可以使用map函数
numbers = map(int, numbers)
如果是3.x,map返回的是map对象,当然也可以转换为List:
numbers = list(map(int, numbers))
3、还有一种比较复杂点:
for i,v in enumerate(numbers):
numbers[i] = int(v)
python学习网,免费的在线学习python平台,欢迎关注!
上一篇:python入门基础教程
下一篇:python怎么去掉换行符
就业培训申请领取
环球青藤
官方QQ群扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群
最新文章
Python编程各地入口
环球青藤官方微信服务平台
刷题看课 APP下载
免费直播 一键购课
代报名等人工服务
Python编程热点排行