Jul-17-2018, 12:03 PM
Dear Python Experts,
I am looking for a loop that goes through my elements in the list and removes
the comma , and ' ' signs. All other strings should remain and occurences like "March" be replaced by a number like 3/.
Is there a neat way to do it?
mylist = [['03/25/93'],['3/1976']]
I would appreciate any help.
I am looking for a loop that goes through my elements in the list and removes
the comma , and ' ' signs. All other strings should remain and occurences like "March" be replaced by a number like 3/.
Is there a neat way to do it?
mylist = [[('','03/25/93','','','','','','','','','','','','','','','')], [('', '', '', 'March 1976', '', '', '', '', '', '', '', '', '', '', '', '', '')]]Exptected output:
mylist = [['03/25/93'],['3/1976']]
I would appreciate any help.