how to show a list as a string code example
Example 1: python print list as string
list1 = ['1', '2', '3']
str1 = ''.join(list1)
Example 2: python list of list to list of string
list_of_string = [''.join(element) for element in list_of_list]
list1 = ['1', '2', '3']
str1 = ''.join(list1)
list_of_string = [''.join(element) for element in list_of_list]