You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
r'([A-Z])' -> raw string regex, matches uppercase letters.
45
+
r'_\' -> replacement string
46
+
=> \1 means "the text matched by the first capture group".(i think there in caes of multiple capture groups like () () () when use 1 the first capture group is insert remember this just only for my sake.
0 commit comments