在同一行列印多個元素
您的程式碼嘗試列印“%s 的總分是%s Alice 100”,其中由於格式不正確,與您的預期輸出不同。要修正此問題,請使用以下方法之一:
1.使用帶有% 格式的元組:
print("Total score for %s is %s" % (name, score))
2.使用帶有 %格式的字典:
print("Total score for %(n)s is %(s)s" % {'n': name, 's': score})
3.使用新式字串格式(Python 3):
print("Total score for {} is {}".format(name, score))
4.連接字元串:
print("Total score for " + str(name) + " is " + str(score))
5。使用函數參數(Python 3):
print("Total score for", name, "is", score)
6.使用F 字串格式(Python 3.6 ):
print(f'Total score for {name} is {score}')
為了清晰和易於使用,建議使用方法5 或6。
以上是如何在 Python 中在同一行列印多個元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!