0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Python 自作でモジュールをimportする

Posted at

Pythonでは自作でモジュールを作成することも可能です。

注意点として、フォルダのどこに置くかによって import の指定方法が変わってきますが、ここでは同じフォルダ内に格納されたモジュールについてのみ記載します。

モジュールを作成する。

自作モジュールをimportする処理には以下を記載する。

from パッケージ名 import モジュール名

これでimportされます。モジュール名を処理内に記載することで処理が実行できます。

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?