python中s%和r%的區別

轉載自http://blog.csdn.net/wusuopubupt/article/details/23678291python

%r用rper()方法處理對象github

%s用str()方法處理對象spa

有些狀況下,二者處理的結果是同樣的,好比說處理int型對象。.net

例一:code

 

[python]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. print "I am %d years old." % 22  
  2. print "I am %s years old." % 22  
  3. print "I am %r years old." % 22  

返回結果:

 

 

[python]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. I am 22 years old.  
  2. I am 22 years old.  
  3. I am 22 years old.  

另一些狀況二者就不一樣了

 

例二:對象

 

[python]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. text = "I am %d years old." % 22  
  2. print "I said: %s." % text  
  3. print "I said: %r." % text  

返回結果:

 

 

[python]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. I said: I am 22 years old..  
  2. I said: 'I am 22 years old.'. // %r 給字符串加了單引號  

再看一種狀況

 

例三:blog

 

[python]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. import datetime  
  2. d = datetime.date.today()  
  3. print "%s" % d  
  4. print "%r" % d  

 

 

返回結果:
[python]  view plain  copy
 
 在CODE上查看代碼片派生到個人代碼片
  1. 2014-04-14  
  2. datetime.date(2014, 4, 14)  

可見,%r打印時可以重現它所表明的對象( rper() unambiguously recreate the object it represents)

 

參考:http://stackoverflow.com/questions/6005159/when-to-use-r-instead-of-s-in-pythonip

相關文章
相關標籤/搜索