print(img_paths)注意:img_paths = glob.glob('f:\tensorflow\testcode\faces\*.jpg')無法獲取
import glob
'''1.萬用字元 *匹配零個或多個字元'''
'''1.1 獲取某個資料夾下的所有子專案:資料夾或檔案'''
for name in glob.glob('f:/untitled/*'):
print(name)
'''輸出
f:/untitled\dogscats_batch_files
f:/untitled\dogscats_data
f:/untitled\dog_cats_batch.py
f:/untitled\dog_cats_tensorflow.py
f:/untitled\flower.py
f:/untitled\flower_data
f:/untitled\helloworld.py
f:/untitled\mnist.py
f:/untitled\mnisttest.py
f:/untitled\mnist_data
f:/untitled\test.py
f:/untitled\venv
''''''1.2 查詢子目錄中的檔案'''
'''1.2.1 用子目錄查詢檔案'''
for name in glob.glob('f:/untitled/test/test/*'):
print(name)
for name in glob.glob('f:/untitled/test/test/*'):
print(name)
'''輸出
f:/untitled/test/test\1.txt
''''''1.2.2 用萬用字元查詢子目錄中的檔案'''
for name in glob.glob('f:/untitled/test/*/*'):
print(name)
'''輸出
f:/untitled/test/test\1.txt
''''''2. 單個字元萬用字元 ?匹配任何單個字元'''
for name in glob.glob('f:/untitled/mnis?.py'):
print(name)
'''輸出
f:/untitled\mnist.py
''''''3. 字元範圍'''
for name in glob.glob('f:/untitled/test/test/*[0-9].*'):
print(name)
'''輸出
f:/untitled/test/test\1.txt
'''
精通標準模板庫STL的向量Vector用法
2011 03 20 15 08 1804人閱讀收藏 舉報vector iterator string dst 1.標頭檔案 要使用vector必須在所在檔案中包含標頭檔案。include 2.宣告乙個vector變數 vector int vec int vector vec char vecto...
標準模板庫( ) 介紹標準模板庫
標準模板庫就是類與函式模板的大集合。stl共有6種元件 容器,容器介面卡,迭代器,演算法,函式物件和函式介面卡。1 容器 容器是用來儲存和組織其他物件的物件。stl容器類的模板在標準標頭檔案中定義。1 序列容器是上面圖中的前三類 容器的操作 2 deque容器 非常類似vector,且支援相同的操作...
用別人的標準要求別人
最近做事的過程中,發現我們周圍有這樣幾類人 對自己要求嚴格,對別人要求嚴格 對自己要求寬鬆,對別人要求嚴格 對自己要求寬鬆,對別人要求寬鬆 對自己要求嚴格,對別人要求寬鬆 比起一句古話 嚴於律己 寬以待人。上面的好幾類人都是做得不好的。很多人都已經長時間習慣這些方式了。於是我設計了乙個矩陣,來分析一...