So i need some help on removing the digits from this string
import re
g="C0N4rtist"
re.sub(r'\W','',g)'
print(re.sub(r'\W','',g))
it should look like
CNrtist
but instead it gives me
04
I've made this code from researching online, and i've used this site http://docs.python.org/2/library/re.html for help. In my eyes, the code should work, and i have no clue what's wrong, so letting me know what's wrong would be very helpful as I've already researched online and in stackoverflow.