Use the
str
method join
as stated in my post above.c = ['a', 'b', 'a', 'b', 'a', 'b', 'a', 'b'] c = "".join(c) print(c)
Output:abababab