Python中的print()
函數是一個非常常用的內置函數,用于在控制臺輸出文本。以下是一些常見的print()
函數用法:
print("Hello, World!")
name = "John"
age = 30
print("My name is", name, "and I am", age, "years old.")
name = "John"
age = 30
print(f"My name is {name} and I am {age} years old.")
format()
方法進行字符串格式化:name = "John"
age = 30
print("My name is {} and I am {} years old.".format(name, age))
sep
參數指定分隔符:print("apple", "banana", "cherry", sep=", ")
end
參數指定行尾字符:print("Hello, World!", end="\n\n")
file
參數將輸出重定向到文件:with open("output.txt", "w") as file:
print("Hello, World!", file=file)
flush
參數立即刷新輸出緩沖區:import time
for i in range(5):
print(i, flush=True)
time.sleep(1)
這些只是print()
函數的一些基本用法。通過組合不同的參數和格式化方法,可以實現更復雜的輸出需求。