prog8_4.py

x = "Py"
y = "thon!"
z = x + y
print(z)

# プログラム8-4(オブジェクトの生成)