從列表中刪除滿足一定條件的元素。
如:刪除乙個列表中長度為0的元素,或者刪除列表中同時是2和3的倍數的元素。
做過高階語言程式設計的人想當然的會認為「這很簡單」,可以如下面的方式來實現:
for i in listobj:
if(...):
listobj.remove(i)
a = [1, 2, 3, 12, 12, 5, 6, 8, 9]
for i in a:
if i % 2 == 0 and i % 3 == 0:
a.remove(i)
print(a)
執行結果:
e:\program\python>d.py
[1, 2, 3, 12, 5, 8, 9]
看到了嗎?
12竟然沒有被刪除!!!(這是python列表操作的乙個非常容易出錯的地方)
要實現預期的目標,其實還是有不少變通方法的,比如:
a = [1, 2, 3, 12, 12, 5, 6, 8, 9]
b = a[:]
for i in a:
if i % 2 == 0 and i % 3 == 0:
b.remove(i)
a = b
print(a)
執行結果:
e:\program\python>d.py
[1, 2, 3, 5, 8, 9]
看看,現在達到預期的目標了吧。從上面的**不難發現,我們構建了列表b,複製了列表a中的所有元素,通過遍歷a來刪除b中的元素,最後把a指向b。
我還發現了另一種方法,自認為挺不錯的--------------------列表推導式
a = ['what', '', '', 'some', '', 'time']
a = [i for i in a if len(i) > 0]
print(a)
b = [1, 2, 3, 12, 12, 5, 6, 8, 9]
b = [i for i in b if not(i % 3 == 0 and i % 2 == 0)]
print(b)
執行結果:
e:\program\python>d.py
['what', 'some', 'time']
[1, 2, 3, 5, 8, 9]
相比較之下,您認為
哪種寫法更好呢??從效能上來看,可能效率都不是太好,但是從寫法簡潔上來看,我是更喜歡後者!
列表去重 去除滿足一定條件的元素
列表去重 保持原來的順序 from functools import reduce list1 1,4,3,3,4,2,3,4,5,6,1 func lambda x,y x if y in x else x y list2 reduce lambda x,y x if y in x else x ...
mtklog 日誌到一定條件自動刪除
mtk平台手機中,開啟mtklogger後,記錄一段時間後,部分日誌會被刪除。為什麼呢?原因在於,配置檔案mtklog config.prop中,配置的日誌的大小size。路徑 etc mtklog config.prop 命令 cat etc mtklog config.prop mtklog p...
pandas 刪除滿足條件元素所在的行
在資料清洗時,需要按照一定條件刪除某些資料樣本,利用布林表示式 索引和drop方法可以實現。1.pandas.drop df df.drop df.index 乙個例子,刪除dataframe中滿足條件x所在的行 df clear df.drop df df x 0.01 index 也可以使用多個...