prog8_25.py

words = ["Games", "Music", "Fun"]
phrase = "◆".join(words)
print(phrase)

# プログラム8-25(リストの要素を連結)