n = ["Hello"," I'm " , "12" , " Years Old "] # Our list String = "" # Our string for x in n : String += x print(String) #Prints it