溫馨提示×

Python中print的用法有哪些

小樊
86
2024-08-29 06:35:25
欄目: 編程語言

Python中的print()函數(shù)是一個非常常用的內(nèi)置函數(shù),用于在控制臺輸出文本。以下是一些常見的print()函數(shù)用法:

  1. 基本用法:
print("Hello, World!")
  1. 輸出變量:
name = "John"
age = 30
print("My name is", name, "and I am", age, "years old.")
  1. 使用格式化字符串(f-string):
name = "John"
age = 30
print(f"My name is {name} and I am {age} years old.")
  1. 使用format()方法進行字符串格式化:
name = "John"
age = 30
print("My name is {} and I am {} years old.".format(name, age))
  1. 使用sep參數(shù)指定分隔符:
print("apple", "banana", "cherry", sep=", ")
  1. 使用end參數(shù)指定行尾字符:
print("Hello, World!", end="\n\n")
  1. 使用file參數(shù)將輸出重定向到文件:
with open("output.txt", "w") as file:
    print("Hello, World!", file=file)
  1. 使用flush參數(shù)立即刷新輸出緩沖區(qū):
import time
for i in range(5):
    print(i, flush=True)
    time.sleep(1)

這些只是print()函數(shù)的一些基本用法。通過組合不同的參數(shù)和格式化方法,可以實現(xiàn)更復雜的輸出需求。

0