0
What’s wrong?
import re num='my num is above' pat=r'above' number=re.sub(pat,'below',num) print(num) Please what’s wrong with this code?
1 Resposta
+ 3
dont worry guys i found the error already
import re num='my num is above' pat=r'above' number=re.sub(pat,'below',num) print(num) Please what’s wrong with this code?