I'm trying to get the following code to print out the numbers of that string but it doesn't print anything.could someone please help a beginner coder out.
import re
def remove_letters(provided_string):
provided_string="adf73390sdkfjh"
new_string = re.sub("[^0-9]", "", provided_string)
return (new_string)
printanything. Please show a minimal reproducible example.