1. ホーム
  2. スクリプト・コラム
  3. パイソン

pythonを使ったオフィス自動化コード例

2022-01-02 06:35:34

パッケージです。
ファイル整理に使用

パッケージはあくまで、ファイルを整理するために使用します。

主なものは、from パッケージを使用することです。モジュール名
またはfrom package import moduleは、注意しなければならない方法で、パッケージはInit.pyというファイルを内部に持ち、パッケージは主に.pyモジュールを含んでいる必要があります。

Pyパッケージを作成します。これです。このパッケージには主にモジュールが含まれます。

このインポートは、あるパッケージの下にあるモジュールをインポートすることと同じです。
このインポート方法の重要な点は、モジュールから何かを使用する場合、その前に修飾する必要があることです。

授業で何かを使うときは、モジュール名で登録する必要があり、「このモジュールのxxというものを使っていますよ」ということを伝えることができます

パッケージをインポートすると、デフォルトでパッケージの中身も実行されます。これは原理的に、パッケージを初期化するコンストラクタ・メソッドに相当するものです。

このパッケージのパスをどうやって見つけたかを伝えることに相当します。

osモジュールは、システムプログラム間の相互作用を担当し、相互作用モジュールに相当する。osは基本的に、大げさに言えば、ファイルを扱うためのモジュール、またはインターフェイスである。

import os
print(os.getcwd())
#can print the current file path
#path to the os file
os.chdir('C:/Users/admin/PycharmProjects/pythonProject')

#This allows os to convert to one of our new directories, and then prints the path to the new directory

#os currently arrives at the new location, and then it can be converted
#For example, let's take the location os and write a list of all the files and folders

dir_list = os.listdir()
# all the folders below this location currently located by os

for d in dir_list :
    print(d,os.path.isdir(d),os.path.isdir(d))
    
    # See if all the files under the current path are folders or files? Make a determination


ここでのファイルは基本的にオブジェクトなので、オブジェクト名を呼び出すだけでファイルかどうか判断できます。

Python autoworkに関するこの記事は以上です。python autoworkの詳細については、Scripting Houseの過去記事を検索するか、以下の記事を引き続き閲覧してください。