Python: Difference between revisions

No edit summary
Line 173: Line 173:
;Notes
;Notes
* <code>re.match</code> will return None if there is no match
* <code>re.match</code> will return None if there is no match
* <code>re.match</code> matches from the beginning of the string
* Use <code>re.findall</code> to match from anywhere in the string


===Spawning Processes===
===Spawning Processes===