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.
[(12,12),(1,23),(43,12)] このリストからこれらの要素を削除する方法のリストがあります。
[(12,12),(1,23),(43,12)]
[(12,12),(1,23),(43,12),(2,1),(1,3),(43,1)]
したがって、このリストは次のようになります
[(2,1),(1,3),(43,1)]
そして、これらのうち 2 つをランダムに選択して、別のリストに入れます。
import random a = [(12,12),(1,23),(43,12),(2,1),(1,3),(43,1)] b = [(12,12),(1,23),(43,12)] c = random.sample(set(a) - set(b), 2)