Fill in the blanks to match strings that are not entirely composed of digits. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Fill in the blanks to match strings that are not entirely composed of digits.

plz help

12th Mar 2019, 10:19 AM
محمد سعد علی
محمد سعد علی - avatar
4 Answers
+ 8
import re pattern = r"[^0-9]" m = re.search(pattern, "Hi there!")
3rd Mar 2020, 6:16 AM
Dharahas Banka
Dharahas Banka - avatar
0
i need help
31st Dec 2019, 2:31 AM
Arjun Singhal
Arjun Singhal - avatar
0
import re pattern = r"[^0-9]" m = re.search(pattern, "Hi there!")
16th Dec 2020, 8:26 AM
ONESMUS CHERUIYOT
ONESMUS CHERUIYOT - avatar
0
23rd Feb 2021, 8:48 AM
จุฑามาศ แก่นแก้ว
จุฑามาศ แก่นแก้ว - avatar