Last active
January 31, 2021 01:21
-
-
Save hoang-himself/1a952f5f09a400c4061f6092c932c03f to your computer and use it in GitHub Desktop.
Python split path
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ntpath | |
def path_leaf(path): | |
head, tail = ntpath.split(path) | |
return tail or ntpath.basename(head) | |
if __name__ == '__main__': | |
path = '/content/My Drive/ocr_demo_test/act_data/Page_1.jpg' | |
print(path_leaf(path)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment