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
# Check if string is a numberre.fullmatch(r"\d+", "12345") # matchre.fullmatch(r"\d+", "12a45") # no match# Extract words from a stringre.findall(r"\w+", "Hello, world!") # ["Hello", "world"]# Replace multiple spaces with a single spacere.sub(r"\s+", " ", "a b c") # "a b c"