在 Python 字符串格式化中% s 和% d 有什么区别?

我不明白 %s%d是做什么的,它们是如何工作的。

813143 次浏览

它们用于格式化字符串。%s充当字符串的占位符,而 %d充当数字的占位符。它们的关联值通过使用 %运算符的 tuple 传入。

name = 'marcog'
number = 42
print '%s %d' % (name, number)

请注意,名称是一个字符串(% s) ,数字是一个整数(% d 表示小数)。

详情请参阅 https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting

在 Python 3中的例子是:

print('%s %d' % (name, number))

它们是格式说明符。当您希望将 Python 表达式的值包含到字符串中并强制执行特定格式时,可以使用它们。

有关相对详细的介绍,请参阅 一头扎进巨蟒里

%s用作要插入到格式化字符串中的字符串值的占位符。

%d用作数值或十进制值的占位符。

例如(对于 python3)

print ('%s is %d years old' % ('Joe', 42))

将输出

Joe is 42 years old

这些是占位符:

例如: 'Hi %s I have %d donuts' %('Alice', 42)

这行代码将用 Alice (str)替换% s,用42替换% d。

输出: 'Hi Alice I have 42 donuts'

这在大多数情况下可以用“ +”来实现。为了更深入地理解您的问题,您可能需要检查{}/。Format ().这里有一个例子: Python 字符串格式化:% vs. . format

也可以在这里看到一个 google python 教程视频@40’,它有一些解释 Https://www.youtube.com/watch?v=tktzob2vjuk

如果您想避免% s 或% d,那么. 。

name = 'marcog'
number = 42
print ('my name is',name,'and my age is:', number)

产出:

my name is marcog and my name is 42

%d%s是占位符,它们作为一个可替换的变量。例如,如果你创建2个变量

variable_one = "Stackoverflow"
variable_two = 45

您可以使用这些变量的元组将这些变量赋给字符串中的一个句子。

variable_3 = "I was searching for an answer in %s and found more than %d answers to my question"

注意,%s适用于 String,%d适用于数值或十进制变量。

如果你打印 variable_3,它会像这样

print(variable_3 % (variable_one, variable_two))

我在 StackOverflow 中寻找答案,找到了超过45个对我的问题的答案。

%d%s字符串格式“命令”用于格式化字符串。%d表示数字,%s表示字符串。

举个例子:

print("%s" % "hi")

还有

print("%d" % 34.6)

传递多个参数:

print("%s %s %s%d" % ("hi", "there", "user", 123456))将返回 hi there user123456

Python 3 doc

%d表示十进制整数

%s用于泛型字符串或对象,在对象的情况下,它将被转换为字符串

考虑以下代码

name ='giacomo'
number = 4.3
print('%s %s %d %f %g' % (name, number, number, number, number))

输出将是

贾科莫4.344.3000004.3

正如你所看到的,%d将被截断为整数,%s将保持格式化,%f将打印为浮点数,而 %g用于泛型数

很明显

print('%d' % (name))

将生成异常; 不能将字符串转换为数字

说到这个。
Python3.6附带了 f-strings,这使得格式化变得更加容易!
现在,如果你的 python 版本大于3.6,你可以用这些方法来格式化你的字符串:

name = "python"


print ("i code with %s" %name)          # with help of older method
print ("i code with {0}".format(name))  # with help of format
print (f"i code with {name}")           # with help of f-strings

按照最新的标准,这是应该做的。

print("My name is {!s} and my number is{:d}".format("Agnel Vishal",100))

检查 Python3.6文档样本程序

这些都是提供信息的答案,但是没有一个能够真正说明 %s%d之间的区别。

%s告诉格式化程序在参数上调用 str()函数,因为我们根据定义强制调用字符串,所以 %s实际上只是执行 str(arg)

另一方面,%d在调用 str()之前先调用 int()的参数,就像 str(int(arg))一样,这将导致 intstr的强制。

例如,我可以将十六进制值转换为十进制值,

>>> '%d' % 0x15
'21'

或者截断一个花车。

>>> '%d' % 34.5
'34'

但是如果参数不是数字,操作将引发异常。

>>> '%d' % 'thirteen'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: %d format: a number is required, not str

因此,如果意图仅仅是调用 str(arg),那么 %s就足够了,但是如果需要额外的格式设置(如格式化浮点小数位)或其他强制,则需要其他格式符号。

在使用 f-string表示法时,如果不使用格式化程序,则默认值为 str

>>> a = 1
>>> f'{a}'
'1'
>>> f'{a:d}'
'1'
>>> a = '1'
>>> f'{a:d}'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: Unknown format code 'd' for object of type 'str'

string.format也是如此; 默认值是 str

>>> a = 1
>>> '{}'.format(a)
'1'
>>> '{!s}'.format(a)
'1'
>>> '{:d}'.format(a)
'1'

% s 用于保存字符串的空间 % d 用于保留数字的空间

name = "Moses";
age = 23
print("My name is %s am CEO at MoTech Computers " %name)
print("Current am %d years old" %age)
print("So Am %s and am %d years old" %(name,age))

程序输出

这段视频深入了解了 https://www.youtube.com/watch?v=4zN5YsuiqMA的内幕

下面是演示 Python 字符串格式设置的基本示例和一种新的方法。

my_word = 'epic'
my_number = 1


print('The %s number is %d.' % (my_word, my_number))  # traditional substitution with % operator

//史诗号码是1。

print(f'The {my_word} number is {my_number}.')  # newer format string style

//史诗号码是1。

两个指纹都一样。