【Python】配列から重複している要素を削除する 2024 9/03 Python 2024年9月3日 t = [1, 2, 3, 4, 5] re = [2, 4] [t.remove(r) for r in re if r in t] print(t) # [1, 3, 5] Python 【Live SaSS Compiler】SCSSの出力先を変更する Swiperの使い方 関連記事 【Python】トリプルクオーテーションで引数 2024年9月9日 【Python】2つの配列から重複している要素を取得する 2024年9月1日 【Python】配列に重複している要素があるか確認する 2024年9月1日 【Python】配列の重複している要素を削除する 2024年9月1日 【Python】配列を比較し含まれていない要素を抽出 2024年9月1日 Python type XXX cannot be converted 2024年8月25日 【BeautifulSoup】特定のname属性値を持つ要素を取得する 2024年8月22日 【Python】日付のフォーマット 2024年8月14日