Python中的print()
函數是一個非常靈活和實用的工具,可以通過多種方式進行格式化和定制。以下是一些進階技巧:
格式化字符串:使用str.format()
或f-string(Python 3.6+)來格式化輸出。
name = "Alice"
age = 30
# 使用str.format()
print("My name is {} and I am {} years old.".format(name, age))
# 使用f-string
print(f"My name is {name} and I am {age} years old.")
指定輸出寬度:使用width
參數指定輸出的最小寬度,如果不足則在左側填充空格。
print("Hello", end="", flush=True)
print("World!")
指定輸出精度:使用precision
參數指定浮點數的小數點后保留的位數。
pi = 3.141592653589793
print("{:.2f}".format(pi)) # 輸出:3.14
文本對齊:使用<
、>
、^
分別表示左對齊、右對齊、居中對齊。
print("{:<10}".format("left")) # 輸出:left
print("{:>10}".format("right")) # 輸出: right
print("{:=^10}".format("center")) # 輸出: center
轉義字符:使用\
來轉義特殊字符,例如換行符\n
、制表符\t
等。
print("Hello\nWorld!") # 輸出:
# Hello
# World!
分隔符和結束符:使用sep
和end
參數自定義分隔符和結束符。
print(1, 2, 3, sep="-", end="!\n") # 輸出:1-2-3!
輸出到文件:將print()
的輸出重定向到文件。
with open("output.txt", "w") as f:
print("Hello, world!", file=f)
使用顏色:在終端中輸出帶有顏色的文本。
import sys
print("\033[31mRed text\033[0m", file=sys.stderr)
這些只是print()
函數的一些進階技巧,更多高級功能可以通過學習其他Python庫(如rich
)來實現。