SQL 語法 SELECT LIKE
SQL 語法 SELECT 的字串比對 (需注意資料庫字元編碼 Character Sets 與 文字排序 Collations ,請參考資料庫編碼 – https://benjr.tw/102156 ) 測試環境為 CentOS 7 x86_64 (虛擬機) LIKE 通常會搭配 % […]
SQL 語法 SELECT 的字串比對 (需注意資料庫字元編碼 Character Sets 與 文字排序 Collations ,請參考資料庫編碼 – https://benjr.tw/102156 ) 測試環境為 CentOS 7 x86_64 (虛擬機) LIKE 通常會搭配 % […]
測試環境為 CentOS 8 x86_64 (虛擬機) 關於 Python 存取 SQLite 資料庫請參考 – https://benjr.tw/104703 當透過 Python 使用到 SQL 指令中的 REGEXP (正規表示式比對字串),但卻發生以下的錯誤訊息,參考文章  […]
測試環境為 CentOS 8 x86_64 (虛擬機) Python 使用 with 語法時,可以免除自行編寫 try 與 finially ,但只限定使用在 context manager class (內容管理員類別) 或是自行定義 __enter__ 與 __exit__ method (方法 […]
測試環境為 CentOS 8 x86_64 (虛擬機) 如何透過 Python 套件將文章內容自動加 Tag(標籤) , 參考文章 – https://www.analyticsvidhya.com/blog/2022/01/four-of-the-easiest-and-most-ef […]
測試環境為 CentOS 8 x86_64 (虛擬機) Python 的資料格式是沒有 JSON (JavaScript Object Notation , 輕量級資料交換語言), JSON 格式如下: 這格式跟 Python 的 dict ( dictionary )資料型態物件類似,資料一樣由 […]
測試環境為 CentOS 8 x86_64 (虛擬機) 參考範例 – https://note.charlestw.com/python-how-to-connect-sqlite/ python 可以將資料儲存在 sqlite 資料庫裡. 匯入 sqlite3 套件. 透過 sqlit […]
測試環境為 CentOS 8 x86_64 (虛擬機) 參考文章 – https://docs.python.org/zh-tw/3/tutorial/datastructures.html#sets 集合 (Sets) 存儲一組無序且不重複的元素,支援 and 聯集 , or 交集 , not 差 […]
測試環境為 CentOS 8 x86_64 (虛擬機) 參考文章 – https://wiki.archlinux.org/title/Systemd/Timers Systemd unit configuration 檔案以 .timer 為結尾的就是用於控制 .service 文件或事件,建議透 […]
測試環境為 CentOS 8 x86_64 (虛擬機) 參考文章 – https://shengyu7697.github.io/python-while/ 範例 : while 範例 : while else 範例 : while True
測試環境為 CentOS 8 x86_64 (虛擬機) 參考文章 – https://selflearningsuccess.com/pythonstring/ string 為 Immutable objects 物件被創造出來後其值無法做改變,關於 Immutable objects 請參考 & […]