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

如何在 Python 中在一行上列印多個值?

Linda Hamilton
發布: 2024-11-30 16:52:20
原創
944 人瀏覽過

How to Print Multiple Values on a Single Line in Python?

如何在一行上同時輸出多個值

考慮以下程式碼:

score = 100
name = 'Alice'
print('Total score for %s is %s', name, score)
登入後複製

預期的效果輸出是「Alice 的總分是100」。然而,實際輸出是「%s 的總分是 %s Alice 100」。要解決此問題,必須對各個值進行格式化並按所需順序列印。

使用 %-Formatting

要更正 %格式的程式碼,請將變數傳遞為元組:

print("Total score for %s is %s" % (name, score))
登入後複製

單元素元組顯示為('this',).

其他格式化方法

%-格式化代表一種較舊的方法。以下是一些更現代的方法:

字典格式

print("Total score for %(n)s is %(s)s" % {'n': name, 's': score})
登入後複製

新式字符串格式

print("Total score for {} is {}".format(name, score))
登入後複製

對於數字,此方法允許重新排序或多個迭代:

print("Total score for {0} is {1}".format(name, score))
登入後複製

或使用顯式名稱:

print("Total score for {n} is {s}".format(n=name, s=score))
登入後複製

連接字符串

print("Total score for " + str(name) + " is " + str(score))
登入後複製

將值作為參數傳遞

print("Total score for", name, "is", score)
登入後複製

避免在此方法中自動調整間距,設定sep 參數:

print("Total score for ", name, " is ", score, sep='')
登入後複製

Python 3.6 F-Strings

print(f'Total score for {name} is {score}')
登入後複製

最終,最可讀的方法取決於個人偏好。

以上是如何在 Python 中在一行上列印多個值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板