《Python编程快速上手》的原文摘录
-
例如,字符分类将匹配数字0到5和一个句点。你不需要将它写成[0-5\.]。 (查看原文) —— 引自第125页 -
For example, the character class [0-5.] will match digits 0 to 5 and a period. You do not need to write it as [0-5\.]. (查看原文) —— 引自第125页 -
refObj = openpyxl.charts.Reference(sheet, (1, 1), (10, 1)) (查看原文) —— 引自第317页 -
调用函数时, (查看原文) —— 引自第56页 -
合并目录 (查看原文) —— 引自第167页 -
##.findall() (查看原文) —— 引自第124页 -
__.search()__ (查看原文) —— 引自第124页 -
>>> beginsWithHello.search('He said hello.') == None True (查看原文) —— 引自章节:Chapter 7: Pattern Matching wi