日中通算30年財務一筋 (中国在住20年)、財務総監の経験を活かし、業務遂行に対する考え方や習慣のギャップを埋める架け橋となり日中両国の企業を未来に向かって支えるお手伝いをいたします。有料OSやAdobe、Excelから脱却し、ほとんどの事務作業をPythonで半自動化しています。
# glob — Unix style pathname pattern expansion. # The glob module finds all the pathnames matching a specified pattern according to the rules used by the Unix shell, although results are returned in # ...
This article is a follow-up to “Glob generators in Python”, we are going to compare the os.walk 1 to the Path.glob method 2 that we used in the past, both in the context of generators. The question we ...
import os import glob path = "D:\\Git\\python-scripts\\" # test dir 内の.pyファイルを抽出 path_join = os.path.join(path, "test", "*.py") print("*glob.glob ...
A look at the benefits of using pathlib, the "object-oriented way of dealing with paths". Working with files is one of the most common things developers do. After all, you often want to read from ...