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.
ジェネレーターの要素にアクセスしたい場合は、最初に次のことを行う必要があります。
items = [item for item in item_generator]
次に、私が欲しいものを手に入れますitems
items
どんなに単純でも、そのような操作が頻繁に行われると、入力するのは少し面倒です。
では、ジェネレーターをアンパックするショートカットまたは既存の組み込み関数はありますか?
ジェネレーターをリストに変換するのはどうですか?
item = list(item_generator)[2]