# 定义列表 list1 = ["11", 5, 17, 18, 23] # 将列表的值转成int list1 = list(map(int, list1)) # 将列表内的值相加 print("列表元素之和为: ", sum(list1)) >>>列表元素之和为: 74