Merge pull request #67 from vanvictorlim/gh-pages

python: correct to 'import re'
This commit is contained in:
Rico Sta. Cruz 2017-10-04 10:43:12 +08:00 committed by GitHub
commit dffa91e7d1
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ title: Python
### Regex
import regex
import re
re.match(r'^[aeiou]', str)
re.sub(r'^[aeiou]', '?', str)