python 之f-strings 来格式化字符串

文章目录

python 之f-strings 来格式化字符串_第1张图片

当使用 f-strings 来格式化字符串时,可以在字符串中嵌入变量的值以及其他表达式的结果。以下是一些示例:

  1. 基本用法:
name = "Alice"
age = 30

print(f"My name is {name} and I am {age} years old.")

输出:

My name is Alice and I am 30 years old.
  1. 数值格式化:
price = 19.99

print(f"The price is ${price:.2f}")

输出:

The price is $19.99

在这个示例中,我们使用 :.2f 来指定 price 变量的格式,保留小数点后两位。

  1. 使用表达式:
x = 5
y = 10

print(f"The sum of {x} and {y} is {x + y}")

输出:

The sum of 5 and 10 is 15
  1. 使用字典和列表:
person = {"name": "Bob", "age": 25}
grades = [90, 85, 88, 92]

print(f"Name: {person['name']}, Age: {person['age']}")
print(f"Grades: {', '.join(map(str, grades))}")

输出:

Name: Bob, Age: 25
Grades: 90, 85, 88, 92

在这个示例中,我们使用字典和列表来构建复杂的字符串。

  1. 日期格式化:
from datetime import datetime

today = datetime.today()
print(f"Today's date: {today:%Y-%m-%d}")

输出:

Today's date: 2023-10-17

在这个示例中,我们使用 :%Y-%m-%d 来指定日期格式。

f-strings 是一种强大的工具,它可以在字符串中嵌入变量和表达式,让您更轻松地进行字符串格式化和构建。这种语法是自 Python 3.6 版本引入的,极大地提高了字符串操作的可读性和可维护性。

你可能感兴趣的:(python,python)