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.
私は現在、何百ものファイルを扱っていますが、そのすべてを読み込み、numpy 配列として表示したいと考えています。現在、ディレクトリからすべてのファイルをプルするために os.walk を使用しています。ディレクトリを通過して配列を作成する for ループがありますが、どこにも保存されません。「外出先で」配列を作成する方法や、空の配列に一定量のメモリを割り当てる方法はありますか?
あなたが行くようにそれらをリストに追加するだけです:
lists = [] for dirpath, dirnames, filenames in os.walk(...): lists.append(...)