在Python中,可以使用print函數(shù)來(lái)將內(nèi)容輸出到標(biāo)準(zhǔn)輸出。除了直接打印字符串或變量外,print函數(shù)還支持一些高級(jí)技巧,例如:
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函數(shù)的一些高級(jí)技巧,可以幫助你更靈活地輸出內(nèi)容到標(biāo)準(zhǔn)輸出。