To convert a numpy array to a string in Python, just iterate through the array and keep it appending to a string variable. You can also choose to append a space to each iteration to make the string look readable.
string = ""
for element in a_list:
string += element
string += " "