最近剛好在Udemy買了一門課程:"The Python Workbook: Solve 100 Exercises",所以就來試試看和python裝熟。
遵循該課程的脈絡記錄練習心得,並且想辦法自問自答從腦海中浮現的問題,透過不斷驗證和失敗學習python3
主要想熟悉四個部分Built-in Type, File and Directory Access, Text Processing Services, and Other Data Types
一切都要從open(filename, mode)開始說起。open()的回傳值會是個file object 模式包含如何看待讀寫時的資料和操作 如何看待讀寫...
open可以設定buffering policy,預設是-1,在大部分的系統中buffer為4096 or 8192 bytes binary mode 0...
利用pattern較有彈性地找出字串中想要的部分 可以使用search、match和findall match checks for a match onl...
pattern description . any character except a newline ^ start of the str...
greedy, non-greedy import re # greedy s1 = '<div class="qa-list__tags&q...
GMT與UTC 依照測量方式 觀測平均太陽日 GMT(Greenwich Mean Time),格林威治標準時間 UT(Universal Time),世界...
time 關注時分秒 import time # time stamp print('time stamp: {}'.format(time.time())...
概觀 python3.4之後引進的功能。若要在python2.7使用aenum enumeration由eunm member組成,每個memeber包含nam...
概觀 任何object都可以被驗證真假值。預設為True,除非該class有以下其中一情況 定義__bool__()且回傳False 定義__len__()...
print在python3開始被改變為function,在此之前的版本為statement 若要在python2.6, 2.7使用print function...