Python: Difference between revisions

132 bytes added ,  10 January 2020
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===