2
3

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 3 years have passed since last update.

Pythonで下の階層のファイルをimportする方法

Last updated at Posted at 2018-07-21

#はじめに
Pythonで下の階層にあるPythonファイルを呼び出す方法を解説します。
Pythonを初めて1週間くらいの人向けの記事です。

#同じ階層にあるファイルをimportする方法

<ファイルの構造>
  root
    ├ main.py   # main.py から called.py をimportする
    └ called.py

main.py
import called     #これで呼び出せる

#下の階層にあるファイルをimportする方法

<ファイルの構造>
  root
    ├ main.py
    └ sample ─ called.py

main.py
from sample import called
2
3
2

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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?