码迷,mamicode.com
首页 > 编程语言 > 详细

Python - 格式化(format())输出

时间:2017-09-09 13:44:21      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:替换   格式化   格式   python   name   orm   输出   lin   cond   

  1. age = 25  
  2. name = ‘Caroline‘  
  3.   
  4. print(‘{0} is {1} years old. ‘.format(name, age)) #输出参数  
  5. print(‘{0} is a girl. ‘.format(name))  
  6. print(‘{0:.3} is a decimal. ‘.format(1/3)) #小数点后三位  
  7. print(‘{0:_^11} is a 11 length. ‘.format(name)) #使用_补齐空位  
  8. print(‘{first} is as {second}. ‘.format(first=name, second=‘Wendy‘)) #别名替换  
  9. print(‘My name is {0.name}‘.format(open(‘out.txt‘, ‘w‘))) #调用方法  
  10. print(‘My name is {0:8}.‘.format(‘Fred‘)) #指定宽度  

 



输出:

  1. Caroline is 25 years old.   
  2. Caroline is a girl.   
  3. 0.333 is a decimal.   
  4. _Caroline__ is a 11 length.   
  5. Caroline is as Wendy.   
  6. My name is out.txt  
  7. My name is Fred    .  

Python - 格式化(format())输出

标签:替换   格式化   格式   python   name   orm   输出   lin   cond   

原文地址:http://www.cnblogs.com/chuangshaogreat/p/7498016.html

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