From 48820119dc691ddd168157617f797314c2468d28 Mon Sep 17 00:00:00 2001 From: Van Lim Date: Mon, 2 Oct 2017 22:01:54 +0800 Subject: [PATCH] python: correct to import re --- python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.md b/python.md index b82db488b..d2c27fd9d 100644 --- a/python.md +++ b/python.md @@ -76,7 +76,7 @@ title: Python ### Regex - import regex + import re re.match(r'^[aeiou]', str) re.sub(r'^[aeiou]', '?', str)