0
1

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.

__name__

Posted at
test.py

print(__name__)
出力

__main__
test2.py

import test
出力
test

test.pyを直接実行すると__name__にstr型の__main__が代入される。
またtest.pyを外部からインポートするとstr型のファイル名testが代入される。つまり、

if __name__ == '__main__':
    main()

のmain()は外部からインポートされた場合は実行されず、直接実行した場合のみ実行される。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?