- 1
Fill in the blanks to match strings that are not entirely composed of digits.
plz help
4 odpowiedzi
+ 8
import re
pattern = r"[^0-9]"
m = re.search(pattern, "Hi there!")
0
i need help
0
import re
pattern = r"[^0-9]"
m = re.search(pattern, "Hi there!")
0