How to get the filename without the extension from a path in Python?

前端 未结 23 1518
逝去的感伤
逝去的感伤 2020-11-22 05:43

How to get the filename without the extension from a path in Python?

For instance, if I had "/path/to/some/file.txt", I would want "

23条回答
  •  灰色年华
    2020-11-22 06:44

    import os
    path = "a/b/c/abc.txt"
    print os.path.splitext(os.path.basename(path))[0]
    

提交回复
热议问题