Im new using python.
I have a dataframe with 3 columns (id, name, description), My dataframe contains as example these rows ('id1', 'paul', 'tmp123'), ('id2', 'laura', 'vi34jay'). I want to replace the numeric characters of my column description by "TT".
expected output
('id1', 'paul', 'tmpTTT'), ('id2', 'laura', 'viTTjay')
Does anyone knows how to do? Thank you