進階搜尋
搜尋結果
找到了 3 個結果
語法記錄
全小寫 "This is a book".lower() 結果 this is a book 全大寫 "This is a book".upper() 結果 THIS IS A BOOK 句首大寫 "this is a book".capitalize() 結果 This is a book 單詞第一個字大寫 "This is a book".title() 結果 This Is A Book 大小寫交換 "This is a book".swapcase() 結果 ...
檔案比對 md5
BUBU 因為公司有在做站台檔案比對確認及通知,這樣子可以確認站台是否有被放置異常的檔案,我是使用 python 加上腳本一起使用,記錄一下日後有機會還可以再使用或者修改 執行掃檔跟產生 md5 #!/usr/bin/python3 import os import hashlib import time import shutil from pathlib import Path import fnmatch import re # 產生出現當下日期及時間 timestr = time.strftim...
檔案掃描比對加郵件寄送
BUBU 因為公司要確認每天備份是否正常運行,做了一支小程可以每天針對某個目錄下備份檔做差異比對並且匯成網頁用郵件寄給 BUBU 做查看,那我是用 python 方式去編寫,剛好最近都在上有關於 python 課程來使用。因為是初學者所以沒有寫的很好但可用來參考用。 #!/usr/bin/python3 # -*- coding: UTF-8 -*- # 要載入的模組 import os # 系統 import re # 正規 import fnmatch # 檔名匹配 from pathlib imp...