# 以字串的 format 函數列印字串及整數
name = '王小明'
score = 80
print('{} 的成績為 {}'.format(name, score))