1. 程式人生 > >python中的%s%是什麽意思

python中的%s%是什麽意思

python 數據類型

它是一個字符串格式化語法(它從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%是什麽意思