码迷,mamicode.com
首页 > 其他好文 > 详细

字符串格式化

时间:2020-06-16 23:18:29      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:lan   roo   class   mon   int   print   really   span   color   

字符串格式化的两种方式:百分号格式、format格式

1、百分号格式

#打印字符串 
msg="i am %s,my hobby is %s" %("alex","youxi")                           
print(msg)                                                               
                                                                         
#打印整数                                                                    
msg1="name %s,age %d" %("land",28)                                       
print(msg1)                                                              
                                                                         
#打印浮点数                                                                   
msg2="percent %f" %99.4566                                               
print(msg2)                                                              
msg3="percent %.2f" %234.5674                                            
print(msg3)                                                              
                                                                         
#打印百分比                                                                   
msg3="percent %.2f %%" %234.5674                                         
print(msg3)                                                              
                                                                         
tlp="i am %(name)s,age %(age)d" %{"name":"land","age":12}                
print(tlp)                                                               
                                                                         
#字符串拼接                                                                   
print("root","x","0","0",sep=":")                                        
                                                                         

2、format格式

tpl = "i am {}, age {}, {}".format("seven", 18, alex)
  
tpl = "i am {}, age {}, {}".format(*["seven", 18, alex])
  
tpl = "i am {0}, age {1}, really {0}".format("seven", 18)
  
tpl = "i am {0}, age {1}, really {0}".format(*["seven", 18])
  
tpl = "i am {name}, age {age}, really {name}".format(name="seven", age=18)
  
tpl = "i am {name}, age {age}, really {name}".format(**{"name": "seven", "age": 18})
  
tpl = "i am {0[0]}, age {0[1]}, really {0[2]}".format([1, 2, 3], [11, 22, 33])
  
tpl = "i am {:s}, age {:d}, money {:f}".format("seven", 18, 88888.1)
  
tpl = "i am {:s}, age {:d}".format(*["seven", 18])
  
tpl = "i am {name:s}, age {age:d}".format(name="seven", age=18)
  
tpl = "i am {name:s}, age {age:d}".format(**{"name": "seven", "age": 18})
 
tpl = "numbers: {:b},{:o},{:d},{:x},{:X}, {:%}".format(15, 15, 15, 15, 15, 15.87623, 2)
 
tpl = "numbers: {:b},{:o},{:d},{:x},{:X}, {:%}".format(15, 15, 15, 15, 15, 15.87623, 2)
 
tpl = "numbers: {0:b},{0:o},{0:d},{0:x},{0:X}, {0:%}".format(15)
 
tpl = "numbers: {num:b},{num:o},{num:d},{num:x},{num:X}, {num:%}".format(num=15)

字符串格式化

标签:lan   roo   class   mon   int   print   really   span   color   

原文地址:https://www.cnblogs.com/Yangyl00/p/13149497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!