Python中的print()
函數(shù)是一個非常常用的內(nèi)置函數(shù),用于在控制臺輸出文本。以下是一些常見的print()
函數(shù)用法:
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
參數(shù)指定分隔符:print("apple", "banana", "cherry", sep=", ")
end
參數(shù)指定行尾字符:print("Hello, World!", end="\n\n")
file
參數(shù)將輸出重定向到文件:with open("output.txt", "w") as file:
print("Hello, World!", file=file)
flush
參數(shù)立即刷新輸出緩沖區(qū):import time
for i in range(5):
print(i, flush=True)
time.sleep(1)
這些只是print()
函數(shù)的一些基本用法。通過組合不同的參數(shù)和格式化方法,可以實現(xiàn)更復雜的輸出需求。