在程式設計中,為了清晰和視覺組織,通常需要在固定列中對齊字串。本文探討如何使用 Python 中的高階格式化技術來實現此目的。
考慮以下程式碼,程式碼計算給定字串中所有排列的頻率:
# Original code to generate permutations ... # Printing results unique = sorted(set(el)) for prefix in unique: if prefix != "": print("value ", prefix, "- num of occurrences = ", string.count(str(prefix)))
但是,由於字串長度不同,輸出可能會出現未對齊的情況:
value a - num of occurrences = 1 value ab - num of occurrences = 1 value abc - num of occurrences = 1 value b - num of occurrences = 1 value bc - num of occurrences = 1 value bcd - num of occurrences = 1 value c - num of occurrences = 1 value cd - num of occurrences = 1 value d - num of occurrences = 1
要對齊輸出,我們可以使用str具有特定格式說明符的.format 方法:
# Using str.format for alignment print("{0: <5}".format("value ") + "{1: >15}".format(prefix) + "- num of occurrences = " + "{2: <5}".format(string.count(str(prefix))))
格式說明符:
編輯 1: 「{0: <5}」中的「0」指的是傳遞給 str.format() 的參數的索引。
編輯2:Python 3 引入f-string 作為str.format 的簡潔替代品:
# Using f-strings for alignment print(f"{'value ':<5}" + f"{prefix:>15}" + "- num of occurrences = " + f"{string.count(str(prefix)):<5}")
優點:
以上是如何在Python中實現列印字串的固定寬度對齊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!