如何将字符串数字转换为列表中的整数?

发布于 2024-07-19 00:24:21 字数 131 浏览 9 评论 0原文

我有一个列表说:

['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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

失去的东西太少 2024-07-26 00:24:21
changed_list = [int(f) if f.isdigit() else f for f in original_list]
changed_list = [int(f) if f.isdigit() else f for f in original_list]
单身狗的梦 2024-07-26 00:24:21

这些数据看起来您会知道数字应该位于哪些位置。 在这种情况下,最好在这些位置显式转换数据,而不是只转换任何看起来像数字的内容:

ls = ['batting average', '306', 'ERA', '1710']
ls[1] = int(ls[1])
ls[3] = int(ls[3])

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:

ls = ['batting average', '306', 'ERA', '1710']
ls[1] = int(ls[1])
ls[3] = int(ls[3])
往日情怀 2024-07-26 00:24:21

尝试这个:

def convert( someList ):
    for item in someList:
        try:
            yield int(item)
        except ValueError:
            yield item

newList= list( convert( oldList ) )

Try this:

def convert( someList ):
    for item in someList:
        try:
            yield int(item)
        except ValueError:
            yield item

newList= list( convert( oldList ) )
痴梦一场 2024-07-26 00:24:21
a= ['batting average', '306', 'ERA', '1710.5']

[f if sum([c.isalpha() for c in f]) else float(f) for f in a ]

如果您的列表包含 float、string 和 int(如评论中 @d.putto 所指出的)

a= ['batting average', '306', 'ERA', '1710.5']

[f if sum([c.isalpha() for c in f]) else float(f) for f in a ]

if your list contains float, string and int (as pointed about by @d.putto in the comment)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文