社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
Py学习  »  Python

Python将字符串列表转换为整数列表

Sunny • 5 年前 • 1286 次点击  

嗨,我正在转换字符串列表: lists=['111,222','121,121'] 在一个整数列表中,但不断出现错误,任何建议都会有帮助。 我试过:

results=[int(i) for i in lists]
print(results)

但是继续得到“int()的无效文本,基数为10:'111222'”

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/50939
 
1286 次点击  
文章 [ 2 ]  |  最新文章 5 年前
aminrd
Reply   •   1 楼
aminrd    5 年前

这应该管用

import re

lists=['111,222','121,121']
results = [ int("".join(re.findall('[0-9]+', element))) for element in lists ] 

# results = [111222, 121121]
RaySteam
Reply   •   2 楼
RaySteam    5 年前

您需要删除逗号,例如:

lists=['111,222','121,121']
result = [int(s.replace(',', '')) for s in lists]
print(result)

输出

[111222, 121121]