如何在一行上同時輸出多個值
考慮以下程式碼:
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中文網其他相關文章!