Python如何改变列表内元素取值(使用循环或list comprehension)

2024-11-30 17:41:45
推荐回答(1个)
回答1:

a = lista
b = [x for x in a if x > 0] 列表推导式