如何将字符串数字转换为列表中的整数?
我有一个列表说:
['batting average', '306', 'ERA', '1710']
如何在不接触字符串的情况下转换预期的数字?
感谢您的帮助。
I have a list say:
['batting average', '306', 'ERA', '1710']
How can I convert the intended numbers without touching the strings?
Thank you for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这些数据看起来您会知道数字应该位于哪些位置。 在这种情况下,最好在这些位置显式转换数据,而不是只转换任何看起来像数字的内容:
The data looks like you would know in which positions the numbers are supposed to be. In this case it's probably better to explicitly convert the data at these positions instead of just converting anything that looks like a number:
尝试这个:
Try this:
如果您的列表包含 float、string 和 int(如评论中 @d.putto 所指出的)
if your list contains float, string and int (as pointed about by @d.putto in the comment)