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

百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存。[PEP-3101]

This PEP proposes a new system for built-in string formatting operations, intended as a replacement for the existing '%' string formatting operator.

1、百分号方式

  • (name)      可选,用于选择指定的key
  • flags          可选,可供选择的值有:width         可选,占有宽度
    • +       右对齐;正数前加正好,负数前加负号;
    • -        左对齐;正数前无符号,负数前加负号;
    • 空格    右对齐;正数前加空格,负数前加负号;
    • 0        右对齐;正数前无符号,负数前加负号;用0填充空白处
  • .precision   可选,小数点后保留的位数
  • typecode    必选
    • s,获取传入对象的__str__方法的返回值,并将其格式化到指定位置
    • r,获取传入对象的__repr__方法的返回值,并将其格式化到指定位置
    • c,整数:将数字转换成其unicode对应的值,10进制范围为 0 <= i <= 1114111(py27则只支持0-255);字符:将字符添加到指定位置
    • o,将整数转换成 八  进制表示,并将其格式化到指定位置
    • x,将整数转换成十六进制表示,并将其格式化到指定位置
    • d,将整数、浮点数转换成 十 进制表示,并将其格式化到指定位置
    • e,将整数、浮点数转换成科学计数法,并将其格式化到指定位置(小写e)
    • E,将整数、浮点数转换成科学计数法,并将其格式化到指定位置(大写E)
    • f, 将整数、浮点数转换成浮点数表示,并将其格式化到指定位置(默认保留小数点后6位)
    • F,同上
    • g,自动调整将整数、浮点数转换成 浮点型或科学计数法表示(超过6位数用科学计数法),并将其格式化到指定位置(如果是科学计数则是e;)
    • G,自动调整将整数、浮点数转换成 浮点型或科学计数法表示(超过6位数用科学计数法),并将其格式化到指定位置(如果是科学计数则是E;)
    • %,当字符串中存在格式化标志时,需要用 %%表示一个百分号

注:Python中百分号格式化是不存在自动将整数转换成二进制表示的方式

常用格式化:

 tpl = "i am %s" % "alex"

 tpl = "i am %s age %d" % ("alex", 18)

 tpl = "i am %(name)s age %(age)d" % {"name": "alex", "age": 18}

 tpl = "percent %.2f" % 99.97623    #打印浮点数

 tpl = "i am %(pp).2f" % {"pp": 123.425556, }

 tpl = "i am %.2f %%" % {"pp": 123.425556, }    #打开百分比

示例:

1、%s 可以字符串拼接

 msg='i am %s my hobby is %s' % ('lhf','alex')
print(msg)

执行结果:

 i am lhf my hobby is alex

2、%s 可以按收任何类型( 数字对应字符串)

 msg='i am %s my hobby is %s' % ('lhf',1)
print(msg)

执行结果:

 i am lhf my hobby is 1

3、%s 可以字符串接收列表

 msg='i am %s my hobby is %s' % ('lhf',[1,2])
print(msg)

执行结果:

 i am lhf my hobby is [1, 2]

4、%s传字符串或任何值, %d只能接收数字

 name='lhf'
age=19
msg='i am %s my hobby is %d' % (name,age) #age可以用%d or %s,但用%s程序可读性差
print(msg)

执行结果:

 i am lhf my hobby is 19

5、%d 只能接收数字类型,不能接收列表

 # %d 只能按收数字类型
msg='i am %s my hobby is %d' % ('lhf',1)
print(msg)

执行结果:

 i am lhf my hobby is 1

6、%d 不能接收列表类型,会报错

 msg='i am %s my hobby is %d' % ('lhf',[1,2])
print(msg)

执行结果:

1 Traceback (most recent call last):
2 File "D:/python/day5/format_type.py", line 14, in <module>
3 msg='i am %s my hobby is %d' % ('lhf',[1,2])
4 TypeError: %d format: a number is required, not list

7、打印浮点数

 tpl = "percent %.2f" % 99.976234444444444444
print(tpl)

执行结果:

 percent 99.98

8、打印百分比

 tpl = 'percent %.2f %%' % 99.976234444444444444
print(tpl)

执行结果:

 percent 99.98 %

9、左边打印空格

 msg='i am %(name)+60s my hobby is alex' %{'name':'lhf'}
print(msg)

执行结果:

 i am                                                          lhf my hobby is alex

10、打印空格加颜色(黄色)

 msg='i am \033[43;1m%(name)+60s\033[0m my hobby is alex' %{'name':'lhf'}
print(msg)

执行结果:

 i am                                                          lhf my hobby is alex

19、不用格式化的方式

 print('root','x','','',sep=':')
print('root'+':'+'x'+':'+'','')

执行结果:

 root:x:0:0
root:x:0 0

2、Format 方式

[[fill]align][sign][#][0][width][,][.precision][type]
  • fill           【可选】空白处填充的字符
  • align        【可选】对齐方式(需配合width使用)
    • <,内容左对齐
    • >,内容右对齐(默认)
    • =,内容右对齐,将符号放置在填充字符的左侧,且只对数字类型有效。 即使:符号+填充物+数字
    • ^,内容居中
  • sign         【可选】有无符号数字
    • +,正号加正,负号加负;
    •  -,正号不变,负号加负;
    • 空格 ,正号空格,负号加负;
  • #            【可选】对于二进制、八进制、十六进制,如果加上#,会显示 0b/0o/0x,否则不显示
  • ,            【可选】为数字添加分隔符,如:1,000,000
  • width       【可选】格式化位所占宽度
  • .precision 【可选】小数位保留精度
  • type         【可选】格式化类型
    • 传入” 字符串类型 “的参数

      • s,格式化字符串类型数据
      • 空白,未指定类型,则默认是None,同s
    • 传入“ 整数类型 ”的参数
      • b,将10进制整数自动转换成2进制表示然后格式化
      • c,将10进制整数自动转换为其对应的unicode字符
      • d,十进制整数
      • o,将10进制整数自动转换成8进制表示然后格式化;
      • x,将10进制整数自动转换成16进制表示然后格式化(小写x)
      • X,将10进制整数自动转换成16进制表示然后格式化(大写X)
    • 传入“ 浮点型或小数类型 ”的参数
      • e, 转换为科学计数法(小写e)表示,然后格式化;
      • E, 转换为科学计数法(大写E)表示,然后格式化;
      • f , 转换为浮点型(默认小数点后保留6位)表示,然后格式化;
      • F, 转换为浮点型(默认小数点后保留6位)表示,然后格式化;
      • g, 自动在e和f中切换
      • G, 自动在E和F中切换
      • %,显示百分比(默认显示小数点后6位)

常用格式化:


 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)
s 代表字符串 d 代表整数 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)
2进制 8进制 10进制 x与X: 16进制 %:百分比 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)

示例:

ps1:

 tpl = "i am {0}, age {1}, really {2}".format("seven", '','alex')
print(tpl)

执行结果:

 i am seven, age 18, really alex

ps2:

 tpl = "i am {2}, age {1}, really {0}".format("seven", '','alex')
print(tpl)

执行结果:

 i am alex, age 18, really seven

ps3: 传字典的方式

 tpl = "i am {name}, age {age}, really {name}".format(name="seven", age=18)
print(tpl)

执行结果:

 i am seven, age 18, really seven

ps4: ** 传字典的方式 (跟ps3的方式是一样的)

 tpl = "i am {name}, age {age}, really {name}".format(**{"name": "seven", "age": 18})
print(tpl)

执行结果:

 i am seven, age 18, really seven

ps5:  * 代表:列表

 tpl = "i am {:s}, age {:d}".format(*["seven", 18])
print(tpl)

执行结果:

 i am seven, age 18

ps6:

 tpl = "i am {:s}, age {:d}".format("seven", 18) #["seven", 18]
print(tpl)

执行结果:

 i am seven, age 18

ps7:

 l=["seven", 18]
tpl = "i am {:s}, age {:d}".format('seven',18)
print(tpl)

执行结果:

 i am seven, age 18

ps8:   2进制 8进制 10进制 x与X: 16进制 %:百分比

 tpl = "numbers: {:b},{:o},{:d},{:x},{:X}, {:%},{}".format(15, 15, 15, 15, 15, 15.87623, 2)
print(tpl)

执行结果:

 numbers: 1111,17,15,f,F, 1587.623000%,2

更多格式化操作:https://docs.python.org/3/library/string.html

Python基础-字符串格式化_百分号方式_format方式的更多相关文章

  1. Python基础 | 字符串格式化输出及print()函数介绍

    在写代码时,我们会经常与字符串打交道,Python中控制字符串格式通常有三种形式,分别是使用str%,str.format(),f-str,用法都差不多,但又有一些细微之差. 一起来看看吧~~~ 一. ...

  2. Python基础之格式化输出的三种方式

    目录 1. 格式化输出的三种方式 1.1 占位符 1.2 format格式化 1.3 f-string格式化 1. 格式化输出的三种方式 在程序中,需要将输出信息打印成固定的格式,这时候就需要格式化输 ...

  3. python 基础 字符串格式化

    print "hello %s %s" % ('wd','pc') c风格 print "hello {1} {0}".format("wd" ...

  4. Python 的字符串格式化和颜色控制

    (部分内容源自武神博客和网络收集.) Python的字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两 ...

  5. python(七)字符串格式化、生成器与迭代器

    字符串格式化 Python的字符串格式化有两种方式:百分号方式.format方式 1.百分号的方式 %[(name)][flags][width].[precision]typecode (name) ...

  6. 字符串格式化(百分号&format)

    字符串格式化 Python的字符串格式化有两种方式: 百分号方式.format方式 百分号方式: %[(name)][flags][width].[precision]typecode [  ]:表示 ...

  7. python中字符串格式化%与.format

    Python的字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存.[PEP-3101] This ...

  8. python基础——字符串和编码

    python基础——字符串和编码 字符串也是一种数据类型,但是,字符串比较特殊的是还有一个编码问题. 因为计算机只能处理数字,如果要处理文本,就必须先把文本转换为数字才能处理.最早的计算机在设计时采用 ...

  9. Python:字符串格式化

    Python中提供了多种格式化字符串的方式,遇到一个项目,在一个文件中,就用了至少两种方式.特别是在使用Log时,更让人迷惑. 因此特地花时间来了解一下Python中字符串格式化的几种方式: # -* ...

随机推荐

  1. sqlite3 shell的使用

    sqlite的安装 1. 首先是下载sqlite,可以该页面下载:http://www.sqlite.org/download.html 当前的最新版本为:sqlite-shell-win32-x86 ...

  2. tar 解压出错

    今天下载了一个Linux内核文件,解压的时候出现了这样的错误: gzip: stdin: unexpected end of file tar: Unexpected EOF in archive t ...

  3. MAC中设置java环境变量和MAVEN

    借助于/usr/libexec/java_home进行配置 在~/.bash_profile 或者/.bash中添加(这里添加1.7版本) #JAVA_HOME export JAVA_HOME=$( ...

  4. .net 操作sftp服务器

    因为项目的需要,整理了一段C#操作sftp的方法. 依赖的第三方类库名称为:SharpSSH 1.1.1.13. 代码如下: 1: using System; 2: using System.Coll ...

  5. 《大转换》,计算会像电力一样变成基础设施,基本是作者10年前写的《IT不再重要》的修订版,3星。

    本书英文版是2014年出的,基本是作者2004年的<IT不再重要>的修订版,还是在说<IT不再重要>的那个主题:计算会想电力一样变成技术设施,只需要按需购买. 以下是书中一些观 ...

  6. POJ 3449 Geometric Shapes --计算几何,线段相交

    题意: 给一些多边形或线段,输出与每一个多边形或线段的有哪一些多边形或线段. 解法: 想法不难,直接暴力将所有的图形处理成线段,然后暴力枚举,相交就加入其vector就行了.主要是代码有点麻烦,一步一 ...

  7. ActionErrors和ActionError

    **ActionErrors和ActionError都是ActionMessage的子类,ActionError存放在 ActionErrors中,ActionError对象中的参数为配置文件中配置的 ...

  8. centos安装docker

    一.升级内核 [root@iZ2893wjzgyZ ~]# rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org [root@iZ289 ...

  9. checkbox与jq<转>2

    jQuery中attr()解决checked属性问题 作者:u012885111 这两天在做一个表单提交,其中就包含有checkbox的全选和反选,这是最先开始做出来的版本,代码如下: <inp ...

  10. 【转】mysql触发器的实战(触发器执行失败,sql会回滚吗)

    1   引言Mysql的触发器和存储过程一样,都是嵌入到mysql的一段程序.触发器是mysql5新增的功能,目前线上凤巢系统.北斗系统以及哥伦布系统使用的数据库均是mysql5.0.45版本,很多程 ...