how to replace a int number using python> code example
Example: replace number with string python
x = re.sub(r"\d+", "NUMB", str(x)) #Replaces digits with 'NUMB'
x = re.sub(r"\d+", "NUMB", str(x)) #Replaces digits with 'NUMB'