在Python中,可以使用print函數來將內容輸出到標準輸出。除了直接打印字符串或變量外,print函數還支持一些高級技巧,例如:
name = "Alice"
age = 25
print("My name is %s and I am %d years old." % (name, age))
print("Hello", end=" ")
print("world")
name = "Alice"
age = 25
print(name, age, sep=", ")
with open("output.txt", "w") as f:
print("Hello, world!", file=f)
這些是print函數的一些高級技巧,可以幫助你更靈活地輸出內容到標準輸出。