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.
-glob.iglob()関数は反復子を返します。その「アイテム」をPythonのリストに最も効果的に割り当てるにはどうすればよいですか? でランダムなアイテムを選択できるように、結果をリストに表示したいrandom.choice()。
glob.iglob()
random.choice()
glob.globリストを返すため、代わりに 使用できます。
glob.glob
任意の iterable からリストを構築するには、ビルトインを使用するだけですlist:
list
list(glob.iglob('*'))