回答編集履歴
1
修正
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
dst = re.findall(r'I\W(\w+)', src)
|
15
|
+
dst = re.findall(r'\bI\W(\w+)', src)
|
16
16
|
|
17
17
|
print(dst)
|
18
18
|
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
|
22
22
|
|
23
|
-
**実行結果** [Wandbox](https://wandbox.org/permlink/
|
23
|
+
**実行結果** [Wandbox](https://wandbox.org/permlink/zwEfC799nmldHiM5)
|
24
24
|
|
25
25
|
```
|
26
26
|
|