python中的%s%是什么意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的%s%是什么意思相关的知识,希望对你有一定的参考价值。
它是一个字符串格式化语法(它从C借用。
Python支持将值格式化为字符串。虽然这可以包括非常复杂的表达式,但最基本的用法是将值插入到%s 占位符的字符串中。
示例1:
#!/usr/bin/env python # -*- coding: utf-8 -*- name = "Tom" print "Hello %s" % name
结果:
Hello Tom
示例2:
#!/usr/bin/env python # -*- coding: utf-8 -*- name = raw_input("who are you?") print "hello %s" % (name,)
结果:
who are you?dengao hello dengao
注:该 %s 令牌允许我插入(和潜在的格式)的字符串。请注意, %s 令牌被替换为% 符号后传递给字符串的任何内容。还要注意,我也在这里使用一个元组(当你只有一个使用元组的字符串是可选的)来说明可以在一个语句中插入和格式化多个字符串。
只是为了帮助您更多,以下是您如何在一个字符串中使用多种格式
"Hello %s, my name is %s" % ('john', 'mike') # Hello john, my name is mike".
如果您使用int而不是字符串,请使用%d而不是%s。
"My name is %s and i'm %d" % ('john', 12) #My name is john and i'm 12.
以上是关于python中的%s%是什么意思的主要内容,如果未能解决你的问题,请参考以下文章
Python 中的 @ 和 lambda 是啥意思? [复制]