📅  最后修改于: 2022-03-11 15:00:50.684000             🧑  作者: Mango
>>> from pathlib import Path
>>> p = Path("/home/user/Downloads/repo/test.txt")
>>> print(p.stem)
test
>>> print(p.name)
test.txt