Python 字符串格式中 %s 和 %d 的区别

Syed Moiz Haider 2021年11月20日
Python 字符串格式中 %s 和 %d 的区别

本教程解释了 Python 字符串格式中 %s%d 之间的区别。我们将首先分别描述 %s%d 的用法,然后比较这两个运算符的用法。本教程提供了详细的示例代码,清楚地说明了 Python 中%s%d 的用法和区别。

Python 字符串格式中的 %d

%d 运算符在 Python 中用作格式化字符串。它是一个整数的占位符。与 %d 关联的值使用 % 或模运算符在元组中提供。必须保持要打印的值的顺序。但是,如果 Python 版本是 3,那么 print 语句会在括号中给出;否则,打印语句不在括号中给出。

下面给出了一个示例代码,以进一步说明如何在 Python 中使用 %d

age = 10
print("John Doe is %d years old" % age)

输出:

John Doe is 10 years old

但是,对于浮点数,%d 运算符会自动将它们转换为十进制值。下面给出了一个示例代码。

area = 24.6
print("The area of this plot is %d sq meter." % area)

输出:

The area of this plot is 24 sq meter.

Python 字符串格式中的 %s

在 Python 中,% 用于不同的数据类型以用于不同的目的。%s 用作字符串值的占位符。但是,它专门用于字符串连接。字符串格式化程序可以采用任何值并将其放置在具有自动类型转换的字符串中。它可用于将多个值附加到一个字符串。下面给出了一个示例代码来揭开在 Python 中使用 %s 的神秘面纱。

name = "john doe"
print("The name of the applicant is %s." % name)

输出:

The name of the applicant is john doe.

Python 中 %s%d 运算符之间的比较

下面给出了 Python 中 %s%d 运算符之间的比较。

%s %d
它用作字符串值的占位符 %d 用作整数值的占位符
它也可以接受任何其他数据类型 如果在 Python 中为 %d 运算符指定了字符串,则会报错
字符串转换是使用 str() 方法完成的。转换在格式化之前完成 %d 中的转换在格式化之前使用 int() 方法完成。
Syed Moiz Haider avatar Syed Moiz Haider avatar

Syed Moiz is an experienced and versatile technical content creator. He is a computer scientist by profession. Having a sound grip on technical areas of programming languages, he is actively contributing to solving programming problems and training fledglings.

LinkedIn

相关文章 - Python String