import os
current_working_directory = os.getcwd()print(current_working_directory)# should print the cwd""" Bonus: If you want to change cwd, without moving file,
use the following method"""
os.chdir("path/to/directory")
# If by "current working directory" you mean # the directory in which is saved the script in execution, then:import os
cwd = os.path.dirname(os.path.realpath(__file__))print(cwd)
import os
print("File location using os.getcwd():", os.getcwd())print(f"File location using __file__ variable: {os.path.realpath(os.path.dirname(__file__))}")
import os
current_working_directory = os.getcwd()print(current_working_directory)# should print the cwd""" Bonus: If you want to change cwd, without moving file,
use the following method"""
os.chdir("path/to/directory")
# If by "current working directory" you mean # the directory in which is saved the script in execution, then:import os
cwd = os.path.dirname(os.path.realpath(__file__))print(cwd)
import os
print("File location using os.getcwd():", os.getcwd())print(f"File location using __file__ variable: {os.path.realpath(os.path.dirname(__file__))}")