gpt4 book ai didi

python - 将列表列表中的特定元素从字符串转换为整数

转载 作者:太空宇宙 更新时间:2023-11-03 13:11:37 25 4
gpt4 key购买 nike

<分区>

我有一个结构化的列表列表,其中每个元素都是一个字符串。我想将此列表列表中的某些(已知索引,始终相同)元素转换为整数。我试过使用列表理解或 isdigit() 方法(没有负元素)但无法弄清楚。

list_of_lists = [['spam','1','toast'], ['bacon','5','eggs'], ['juice', '8', 'tea']]
new_breakfast_list = [[int(element) for element in row] for row in list_of_lists]

上面的代码可以理解地在尝试转换第一个元素时给出 ValueError: invalid literal for int() with base 10: 'spam'。我想要么忽略错误并前进到下一个元素,要么专门循环遍历 list_of_lists[i][1] 这样我就可以得到:

print(new_breakfast_list)
[['spam', 1, 'toast'], ['bacon', 5, 'eggs'], ['juice', 8, 'tea']]

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com