.
. 2019 14 feb
A:
If you can successfully parse the individual rows into the list rows, and you can successfully parse the individual lists into the list of lists lst, then you can do:
>>> rows = [x.replace('
', '') for x in lst]
>>> print rows
['01.07.2016', '02.07.2016', '03.07.2016', '04.07.2016', '05.07.2016', '06.07.2016', '07.07.2016', '08.07.2016', '09.07.2016', '10.07.2016', '11.07.2016', '12.07.2016', '13.07.2016', '14.07.2016', '15.07.2016', '16.07.2016', '17.07.2016', '18.07.2016', '19.07.2016', '20.07.2016', '21.07.2016', '22.07.2016', '23.07.2016', '24.07.2016', '25.07.2016', '26.07.2016', '27.07.2016', '28.07.2016', '29.07.2016', '30.07.2016', '31.07.2016', '01.08.2016', '02.08.2016', '03.08.2016', '04.08.2016', '05.08.2016', '06.08.2016', '07.08.2016', '08.08.2016', '09.08.2016', '10.08.2016', '11.08.2016', '12.08.2016', '13.08.2016', '14.08.2016', '15.08.2016', '16.08.2016', '17.08.2016', '18.08.2016', '19.08.2016', '20.08.2016', '21.08.2016', '22.08.2016', '23.08.2016', '24.08.2016', '25.08.2016', '26.08.2016', '27.08.2016', '28.08.2016', '29.08.2016', '30.08.2016', '31.08.2016', '01.09 be359ba680
Related links:
Comments