How do I convert a list of ints to a single string, such that:
int
[1, 2, 3, 4] becomes \'1234\' [10, 11, 12, 13]
[1, 2, 3, 4]
\'1234\'
[10, 11, 12, 13]
''.join(str(i) for i in [1,2,3,4])