日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python 中的os.path.split()函数用法

發布時間:2025/3/20 python 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python 中的os.path.split()函数用法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

基本概念

os.path.split()通過一對鏈表的頭和尾來劃分路徑名。鏈表的tail是是最后的路徑名元素。head則是它前面的元素。

舉個例子:

path name = '/home/User/Desktop/file.txt'

在上面的這個例子中,路徑名字file.txt稱之為tail 路徑‘/home/User/Desktop/’ 稱之為head。tail部分永遠不會包含斜杠符號。如果這個路徑名字以斜杠結束,那么tail就是為空。
如果沒有斜杠在路徑中,那么head是為空的。下面是詳細的參數:

pathheadtail
‘/home/user/Desktop/file.txt’‘/home/user/Desktop/’‘file.txt’
‘/home/user/Desktop/’‘/home/user/Desktop/’{empty}
‘file.txt’{empty}‘file.txt’

實例分析

1 實例一:

# Python program to explain os.path.split() method # importing os module import os # path path = '/home/User/Desktop/file.txt'# Split the path in # head and tail pair head_tail = os.path.split(path) # print head and tail # of the specified path print("Head of '% s:'" % path, head_tail[0]) print("Tail of '% s:'" % path, head_tail[1], "\n") # path path = '/home/User/Desktop/'# Split the path in # head and tail pair head_tail = os.path.split(path) # print head and tail # of the specified path print("Head of '% s:'" % path, head_tail[0]) print("Tail of '% s:'" % path, head_tail[1], "\n") # path path = 'file.txt'# Split the path in # head and tail pair head_tail = os.path.split(path) # print head and tail # of the specified path print("Head of '% s:'" % path, head_tail[0]) print("Tail of '% s:'" % path, head_tail[1])

2 結果:

''' 學習中遇到問題沒人解答?小編創建了一個Python學習交流QQ群:531509025 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' Head of '/home/User/Desktop/file.txt': /home/User/Desktop Tail of '/home/User/Desktop/file.txt': file.txt Head of '/home/User/Desktop/': /home/User/Desktop Tail of '/home/User/Desktop/': Head of 'file.txt': Tail of 'file.txt': file.txt

3 實例二

# Python program to explain os.path.split() method # importing os module import os # path path = '' # Split the path in # head and tail pair head_tail = os.path.split(path) # print head and tail # of the specified path print("Head of '% s':" % path, head_tail[0]) print("Tail of '% s':" % path, head_tail[1]) # os.path.split() function # will return empty # head and tail if # specified path is empty

4 測試結果:

Head of '': Tail of '':

總結

以上是生活随笔為你收集整理的python 中的os.path.split()函数用法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。