在Python中,可以使用print()
函數來打印輸出。你可以將要打印的內容作為參數傳遞給print()
函數。
以下是一些示例:
print("Hello, World!")
x = 10
print(x)
x = 10
y = 5
print(x, y)
x = 10
y = 5
print(x + y)
name = "Alice"
age = 25
print("My name is {} and I am {} years old.".format(name, age))
請注意,print()
函數還有其他一些參數,例如sep
和end
,可以用于控制輸出的分隔符和結尾字符。你可以查閱Python官方文檔以了解更多關于print()
函數的信息。