How to get the home directory in Python?
Answers
Answered by
0
To get homedir u can use this
pathlib.Path.home():
from pathlib import Path
home=str(Path.home())
Similar questions