Comment trouver dans quel répertoire mon code Python est en cours d'exécution

import os
dir_where_my_py_code_is_running = os.getcwd()
print(dir_where_my_py_code_is_running)    #prints the directory


Frail Frog