Python的print()
函數是一個內置函數,用于在控制臺輸出文本。這是一個非?;镜浅S杏玫墓δ堋R韵率侨绾问褂?code>print()函數的一些例子:
print("Hello, World!")
x = 5
y = 7
print("The values of x and y are:", x, y)
name = "Alice"
age = 30
print(f"{name} is {age} years old.")
print("This", "is", "a", "test.")
sep
參數指定分隔符:print("a", "b", "c", sep=", ")
end
參數指定行尾字符:print("Hello, World!", end="***\n")
with open("output.txt", "w") as f:
print("Hello, World!", file=f)
這只是print()
函數的一些基本用法。通過組合不同的參數和格式化選項,你可以創(chuàng)建各種復雜的輸出。