In Python I have four strings that include the formatting of a list:
line1 ="['a.b.c','b.c.a','c.d.e']"
line2 ="['def','efg']"
line3 ="['f']"
line4 ="['g']"
How do I merge them all so I get a valid Python list such as:
SumLine = ['a.b.c','b.c.a','c.d.e','def','efg','f','g']