小言_互联网的博客

Python字符串三种格式化输出

407人阅读  评论(0)

字符串格式化输出是python非常重要的基础语法,今天就把三种格式化输出做一个简单的总结,希望对大家有帮助。

格式化输出:内容按照一定格式要求进行输出。

1.使用占位符%输出

python2.6版本之前,使用%格式化字符串沿用的是C语言的输出格式。

使用说明:

print("格式化字符串" % 变量)

#变量超过2个使用元组格式:

print("格式化字符串" % (变量1,变量2))

使用%占位符表示字符串中变量位置。

传入的值要与%占位符的变量一一对应。

其中,%s表示字符串,%d表示整数,%f表示小数(默认保留小数点后6位,%.2f保留两位小数),存在格式化标志时,需要用 %%表示一个百分号。


   
  1. name= 'xiaoming'
  2. age= 12
  3. print( "My name is %s,My age is %d" %(name,age))
  4. #输出:My name is xiaoming,My age is 12

2.format格式化

format是python2.6新增的一个格式化字符串的方法,相比%格式化方法有如下优点:

  • 单个参数可以多次输出,参数顺序可以不相同

  • 填充方式十分灵活,对齐方式十分强大

  • 官方推荐用的方式

使用说明:


   
  1. print( "...{索引}, ... , {索引}, ...".format(值 1, 值 2))
  2. #索引{}为空,默认按照顺序取值
  3. print( "...{key1}, ... , {key2}, ...".format(key1=value,key2=value))

   
  1. name= 'xiaoming'
  2. age= 12
  3. print( 'My name is {}, My age is {}'.format(name,age))
  4. print( 'My name is {0}, My age is {1}'.format(name,age))
  5. print( 'My name is {name}, My age is {age}'.format(name= 'xiaoming',age= 12))
  6. #输出:My name is xiaoming,My age is 12

format进阶

1.填充对齐


   
  1. # 先取到值,然后在冒号后设定填充格式:{索引:[填充字符][对齐方式][宽度]}
  2. # *< 20:左对齐,总共 20个字符,不够的用*号填充
  3. print( '{0:*<20}'.format( 'hellopython'))
  4. # *> 20:右对齐,总共 20个字符,不够的用*号填充
  5. print( '{0:*>20}'.format( 'hellopython'))
  6. # *^ 20:居中显示,总共 20个字符,不够的用*号填充
  7. print( '{0:*^20}'.format( 'hellopython'))
  8. 输出:
  9. hellopython*********
  10. *********hellopython
  11. ****hellopython*****

2.位数与进制转换


   
  1. #保留 2位有效数字
  2. print( "{:.2f}".format( 3.1415926))
  3. #转成二进制
  4. print( '{0:b}'.format( 16))
  5. #转成八进制
  6. print( '{0:o}'.format( 10))
  7. #转成十六进制
  8. print( '{0:x}'.format( 15)) 
  9. 输出
  10. 3.14
  11. 10000
  12. 12
  13. f

f-string格式化

在Python 3.6中引入 了f-strings,不仅比str.format使用简单,而且效率也更高。

使用说明

f-string是字符串前面加上 "f",{}直接使用变量、表达式等。


   
  1. name= 'xiaoming'
  2. age= 12
  3. #{}中直接使用变量
  4. print(f 'My name is {name},My age is {age}')
  5. #{}中运行表达式
  6. print(f '{1+2+3}')
  7. #调用Python内置函数
  8. print(f '{name.upper()}')
  9. #用lambda匿名函数:可以做复杂的数值计算
  10. fun = lambda x : x+ 1
  11. print(f '{fun(age)}')
  12. #输出
  13. My name is xiaoming,My age is  12
  14. 6
  15. XIAOMING
  16. 13

往期推荐

为什么建议大家使用 Linux 开发?

Python多进程及多线程基础

Python操作SQLite数据库

好文章,我在看❤️


转载:https://blog.csdn.net/XingLongSKY/article/details/108426836
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场