my question sounds stupid but is there something that doesn't work with python 3.x and re.sub? Because this simple code seems to be wrong, it doesn't print '(026) 660 68 21' on my console. Can someone help me?
import re
word = "Tél : (026) 660 68 21"
w = re.sub("Tél : ", "", word, count=1)
print(w)