python去除副檔名

來源:互聯網
上載者:User
下面為大家分享一篇python去除副檔名的執行個體講解,具有很好的參考價值,希望對大家有所協助。一起過來看看吧

擷取不帶副檔名的檔案的名稱:

import osprintos.path.splitext("path_to_file")[0] from os.path import basename# now you can call it directly with basenameprint basename("/a/b/c.txt") >>>base=os.path.basename('/root/dir/sub/file.ext')>>> base'file.ext'>>> os.path.splitext(base)('file', '.ext')>>> os.path.splitext(base)[0]'file'>>> >>> printos.path.splitext(os.path.basename("hemanth.txt"))[0]hemanth>>> file ='/root/dir/sub.exten/file.data.1.2.dat'>>> print('.').join(file.split('.')[:-1])/root/dir/sub.exten/file.data.1.2 >>> s = 'c:\\temp\\akarmi.txt'>>> print(os.path.splitext(s)[0])c:\temp\akarmi因此,我不需要磁碟機代號或者目錄名,我使用: >>>print(os.path.splitext(os.path.basename(s))[0])akarmidef getFileNameWithoutExtension(path): returnpath.split('\\').pop().split('/').pop().rsplit('.', 1)[0] getFileNameWithoutExtension('/path/to/file-0.0.1.ext')# => file-0.0.1 getFileNameWithoutExtension('\\path\\to\\file-0.0.1.ext')# => file-0.0.1

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.