I have python code
my_list = ['hsdpa_-_rl_fail', 'avg_reported_cqi.', 'fach-c_load_ratio', 'canc_isho_cpich/ecno_nrt_m1010c209']
my_dict = {'-' : 'dash' , '.':'dot' , '/':'slash'}
I want search and replace in my_list as per mapping given in my_dict that is my_dict key shall be replaced by respective value in all element of my_list.
How this can be done in pythonic way?