溫馨提示×

python的print()函數怎么用

小樊
82
2024-08-27 09:11:06
欄目: 編程語言

Python的print()函數是一個內置函數,用于在控制臺輸出文本。這是一個非?;镜浅S杏玫墓δ堋R韵率侨绾问褂?code>print()函數的一些例子:

  1. 輸出簡單的文本:
print("Hello, World!")
  1. 輸出變量的值:
x = 5
y = 7
print("The values of x and y are:", x, y)
  1. 使用字符串格式化輸出變量的值:
name = "Alice"
age = 30
print(f"{name} is {age} years old.")
  1. 使用逗號分隔多個輸出項:
print("This", "is", "a", "test.")
  1. 使用sep參數指定分隔符:
print("a", "b", "c", sep=", ")
  1. 使用end參數指定行尾字符:
print("Hello, World!", end="***\n")
  1. 將輸出重定向到文件:
with open("output.txt", "w") as f:
    print("Hello, World!", file=f)

這只是print()函數的一些基本用法。通過組合不同的參數和格式化選項,你可以創(chuàng)建各種復雜的輸出。

0