string to list
print str([1, 2]) + "34" # Same as "[1, 2]" + "34" print [1, 2] + list("34") # Same as [1, 2] + ["3", "4"]