标签: python
编写一个python程序来计算列表中所有元素的总和,不包括5到8之间的数字。 将列表作为l1 = [1,5,3,6,8,9,19,17,14]
答案 0 :(得分:2)
sum(x for x in l1 if x not in range(5,9))