知識點-os檔案地址讀取與拼接、pip安裝豆瓣源例子和endswith startswith使用
阿新 • • 發佈:2018-12-30
1.pip安裝豆瓣源例子
#只要正常pip install ***,install後面新增 -i https://pypi.douban.com/simple 就行,這樣用了國內庫源加快下載安裝速度
2.os(join abspath dirname)檔案地址讀取與拼接
1)dirname 讀取當前檔案的資料夾名稱 os.path.dirname(file) __file__當前檔案,
2) abspath 獲取當前檔案的絕對路徑
3)join 關聯起來,路徑與檔案相連線、
4)listdir 展示出當前目錄下所有檔案
5)getcwd 展示當前目錄路徑
import os c=os.path.dirname(__file__) a=os.path.abspath(c) b=os.path.join(a,"aa") print(a) print(b) print(c)
3.endswith startswith使用
aa=["qaa","cc","sss"]
print([bb for bb in aa if not bb.endswith("c")])
print([bb for bb in aa if not bb.startswith("q")])
-------------------------------------------------------結果---------------------
['qaa', 'sss']
['cc', 'sss']