1.定義 join_strings,變量words
2.在function 里,創建一個參數result,and set it to "",an empty string
3.遍歷 the words list and append each word to result
4.最后,return the result
n = ["Michael","Lieberman"]
def join_strings(words):
result = ""
for word in words:
result += word
return result
print join_strings(n)