4
8

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

Pythonでimport文を書く際の順番

Posted at

pythonで外部モジュールを使用する際に使用するimport文ですが、importする順番があるらしいのでざっくりまとめてみました。

順番

1. 標準ライブラリ
2. サードパーティに関連するもの
3. ローカルな アプリケーション/ライブラリ に特有のもの

上のグループそれぞれの間には、1行空白を置くべきです。

ライブラリの種類について補足

  • 標準ライブラリ
    pythonでデフォルトで用意されているライブラリ
    例)sys,os,math

  • サードパーティ製ライブラリ
    pythonが提供しているもの以外で企業や個人がパッケージとして配布しているもの
    PyPI」という情報共有サイトにまとめられています

  • ローカルなアプリケーション
    上記以外で、独自にコンポーネント化した処理をまとめたファイルなど

参考

4
8
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
4
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?