#ファイル名を表示
print(__file__)
#ファイルパスを表示
print(os.path.realpath(__file__))
print(os.path.abspath(__file__))
https://codechacha.com/ja/python-examples-get-working-directory/
#ファイル名を表示
print(__file__)
#ファイルパスを表示
print(os.path.realpath(__file__))
print(os.path.abspath(__file__))