如何将字符串数字转换为列表中的整数?
问题描述
我有一个清单说:
['batting average', '306', 'ERA', '1710']
如何在不接触字符串的情况下转换预期的数字?
How can I convert the intended numbers without touching the strings?
感谢您的帮助.
解决方案
changed_list = [int(f) if f.isdigit() else f for f in original_list]
相关文章