Python中提供了多种格式化输出的方法,其中最常用的是使用format
方法和f-string
。
format
方法:name = "Alice"
age = 25
print("My name is {} and I am {} years old.".format(name, age))
f-string
(Python 3.6及以上版本):name = "Alice"
age = 25
print(f"My name is {name} and I am {age} years old.")
以上两种方法都可以在字符串中使用占位符(如{}
)来表示要格式化输出的变量,然后在format
方法的参数或f-string
中使用相应的变量值来替换占位符。