I have the following tuple value and wanted to split single tuple value into multiple values.I tried converting the tuple to string and used split(),splitlines() based on \n as delimiter however it didn't work.Any inputs please?
INPUT:
('2018-10-23\n2018-10-25\n2018-10-26\n2018-10-27\n2018-10-28\n2018-10-30\n', 0)
OUTPUT:
2018-10-23
2018-10-25
2018-10-27
2018-10-28
2018-10-30