我目前正試圖在使用變量的三引號字符串內連接。什麼是去了解這一點的最好方法是什麼?三重引號字符串的連接
print('''
Points left to spend: ''' + str(pointsLeft) + '''
''' + str(attrChoice) + ':\t' + '''[''' + str(charAttr[attrChoice]) + ''']
To reduce the number of points spent on this skill, simply enter a negative number.
'''
)
我得到的錯誤信息是:關鍵字不能是表達式。任何人都可以解釋這意味着什麼,如果它可以嘗試這樣一個級聯?
什麼'attrChoice','charAttr'等..? –