📜  Python字符串格式() 方法(1)

📅  最后修改于: 2023-12-03 15:34:28.954000             🧑  作者: Mango

Python字符串格式() 方法

Python字符串格式方法是一种格式化字符串的方式,它是Python中常用的字符串处理方式之一。通过使用字符串格式方法,程序员可以轻松地将变量中的值插入到字符串中,而无需使用拼接字符串的方式。

常用的字符串格式方法

Python中常用的字符串格式方法包括以下几种:

1. format() 方法

format()方法可以用于简单的字符串格式化,例如:

name = 'Tom'
age = 18
print("My name is {}, and I am {} years old.".format(name, age))

输出:

My name is Tom, and I am 18 years old.

format()方法可以用于处理字符串、数字、列表、字典等多种数据类型。

2. % 字符串格式化

%字符串格式化是Python中比较常用的一种字符串格式化方式,它可以用于字符串、数字和元组等数据类型。

name = 'Tom'
age = 18
print("My name is %s, and I am %d years old." % (name, age))

输出:

My name is Tom, and I am 18 years old.
3. f-string方法

f-string方法是Python3.6中引入的字符串格式化方式,它比较简单易懂,也是Python3中最简单的一种字符串格式化方式。

name = 'Tom'
age = 18
print(f"My name is {name}, and I am {age} years old.")

输出:

My name is Tom, and I am 18 years old.

在f-string方法中可以使用表达式和变量,如:

name = 'Tom'
age = 18
print(f"My name is {name.upper()}, and I am {age*2} years old.")

输出:

My name is TOM, and I am 36 years old.
字符串格式化常用的占位符

在字符串格式化中,常用的占位符有以下几种:

| 占位符 | 描述 | | ------ | ---- | | %s | 字符串 | | %d | 十进制整数 | | %f | 浮点数 | | %x | 十六进制整数 |

以%d为例,它可以用于处理整数类型的数据,例如:

age = 18
print("My age is %d." % age)

输出:

My age is 18.
数字格式化

在字符串格式化中,除了可以处理字符串类型的数据,还可以处理数字类型的数据。数字格式化可以通过format()方法或%占位符来实现。

1. format()方法
price = 52.5
print("The price is {:.2f} yuan.".format(price))

输出:

The price is 52.50 yuan.
2. % 占位符格式化
price = 52.5
print("The price is %.2f yuan." % price)

输出:

The price is 52.50 yuan.
结语

Python的字符串格式化功能非常强大,通过合理运用字符串格式化方法和占位符可以使程序员开发出更加优美和高效的程序。