1# Python program get current working directory using os.getcwd()
2
3# importing os module
4import os
5
6# Get the current directory path
7current_directory = os.getcwd()
8
9# Print the current working directory
10print("Current working directory:", current_directory)
11