1# Import the os module
2import os
3
4# Get the current working directory
5cwd = os.getcwd()
6
7# Print the current working directory
8print("Current working directory: {0}".format(cwd))
9
10# Print the type of the returned object
11print("os.getcwd() returns an object of type: {0}".format(type(cwd)))
12