在 Python 中使用 〜 获取主目录的过程是什么?
〜
你需要导入 os 模块,然后只需一行就能完成剩下的工作。
os
import os print (os.path.expanduser('~'))
输出:
/home/liushi