Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit26ec3f6

Browse files
Update 12_Regular_Expressions.ipynb
Fix error in .findall() grouping- original grouping style did not compile- changed return example to match updated grouping
1 parenta2e5ad5 commit26ec3f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎jupyter_notebooks/12_Regular_Expressions.ipynb‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@
389389
"\n",
390390
"- When called on a regex with no groups, such as\\d-\\d\\d\\d-\\d\\d\\d\\d, the method findall() returns a list of ng matches, such as ['415-555-9999', '212-555-0000'].\n",
391391
"\n",
392-
"- When called on a regex that has groups, such as (\\d\\d\\d)-d\\d)-(\\d\\ d\\d\\d), the method findall() returns a list of es of strings (one string for each group), such as [('415', ', '9999'), ('212', '555', '0000')].\n",
392+
"- When called on a regex that has groups, such as (\\d\\d\\d)-(\\d\\d\\d\\d)-(\\d\\ d\\d\\d), the method findall() returns a list of es of strings (one string for each group), such as [('415','555', '9999'), ('212', '555', '0000')].\n",
393393
"\n",
394394
"### Making Your Own Character Classes\n",
395395
"\n",

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp