在Python中,print函數(shù)可以按不同的方法進行操作。以下是常見的print操作方法:
print("Hello, World!")
x = 10
print(x)
x = 10
y = 20
print(x, y)
name = "Alice"
age = 25
print("My name is %s and I am %d years old." % (name, age))
x = 10
y = 20
print(x, y, sep=", ")
print("Hello", end=" ")
print("World")
輸出:Hello World
with open("output.txt", "w") as f:
print("Hello, World!", file=f)
以上是一些常見的print操作方法,可以根據(jù)具體需求選擇適合的方法。