List of elements:
['1', '2', '2', 3, 6, 6, 3]
How would we convert this to a string such as:
"1223663"
list_elements = ['1', '2', '2', 3, 6, 6, 3] final_string = ''.join(str(element) for element in list_elements)