0
answer to regular expression question
import re pattern = r"spam" print("the pattern is {}" . format (pattern)) if re.match(pattern,"sp"): print("Match") else: print("no match") what is the answer for this program
5 Respuestas
0
To confirm the answer asked in the sololearn quiz. I got different correct answer. To ensure my answer.
0
Senthil Kumar
Correct answer is : no match
0
You are correct. But in the solo learn question they preferred another answer. That's why I posted this question. Even I posted this comment in the section mentioned solo learn team need to look after it these kind of question. They need to review thier q&a at the end of the concept. Thanks for baring the time with me
0
Senthil Kumar ok.
- 3
Why are you asking for the results?