在Python中,print()
函数是一个内置函数,用于在控制台上输出文本。要实现print
的多重功能,您可以使用不同的参数和选项。以下是一些示例:
print("Hello, World!")
x = 5
y = 10
print("The values of x and y are:", x, y)
name = "Alice"
age = 30
print(f"My name is {name} and I am {age} years old.")
sep
参数更改分隔符:print("apple", "banana", "cherry", sep=", ")
end
参数更改行尾字符:print("This is a test.", end="***\n")
with open("output.txt", "w") as file:
print("Hello, World!", file=file)
print()
函数的返回值(默认为None
):result = print("Hello, World!")
print("The return value of print() is:", result)
这只是print()
函数的一些功能。您可以根据需要组合这些功能以实现所需的输出效果。