Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のリストがあるとします。
my_list = ["<stuff","10","20","John","<td testing"]
リスト内の各値を調べて、値の先頭に「<」が含まれている場合は削除したいと思います。
最終結果は次のようになります。
my_list = ["10","20","John"]
助言がありますか?