Write a Python program to list the home directory without an absolute path. May 17, 2023 by admin Write a Python program to list the home directory without an absolute path. 1 2 import os.path print(os.path.expanduser('~')) Final output