Write a Python program to list the home directory without an absolute path.

Write a Python program to list the home directory without an absolute path.

1
2
import os.path
print(os.path.expanduser('~'))

Final output

Leave a Comment