首頁 >後端開發 >Python教學 >如何在 Python 中在同一行列印多個元素?

如何在 Python 中在同一行列印多個元素?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-12-02 20:50:11109瀏覽

How Can I Print Multiple Elements on the Same Line in Python?

在同一行列印多個元素

您的程式碼嘗試列印“%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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn