how to turn a list into a string oython code example
Example: how to convert a list into string with \n
int_lst = [1, 2, 3, 4, 5]
full_str = '\n'.join([str(elem) for elem in list_of_num])
print(full_str)
int_lst = [1, 2, 3, 4, 5]
full_str = '\n'.join([str(elem) for elem in list_of_num])
print(full_str)