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 Answer
+ 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?