python——格式化输出、占位符、format()

占位符

常用占位符 描述
%s 字符串
%d 十进制整数
%o 八进制
%x 十六进制
%f 浮点数
>>> print(‘%s‘ % ‘hello world‘)  # 字符串输出
hello world
>>> print(‘%20s‘ % ‘hello world‘)  # 右对齐,取20位,不够则补位
         hello world
>>> print(‘%-20s‘ % ‘hello world‘)  # 左对齐,取20位,不够则补位
hello world
>>> print(‘%.2s‘ % ‘hello world‘)  # 取2位
he
>>> print(‘%10.2s‘ % ‘hello world‘)  # 右对齐,取2位
        he
>>> print(‘%-10.2s‘ % ‘hello world‘)  # 左对齐,取2位
he
>>> print(‘%d元‘ % 10)
10元
>>> print(‘%f‘ % 1.11)  # 默认保留6位小数
1.110000
>>> print(‘%.1f‘ % 1.11)  # 取1位小数
1.1

format()

相对基本格式化输出采用‘%’的方法,format()功能更强大。

>>> print(‘{} {}‘.format(‘hello‘,‘world‘))  # 不带字段
hello world
>>> print(‘{0} {1}‘.format(‘hello‘,‘world‘))  # 带标号
hello world
>>> print(‘{0} {1} {0}‘.format(‘hello‘,‘world‘))  # 打乱顺序
hello world hello
>>> print(‘{1} {1} {0}‘.format(‘hello‘,‘world‘))
world world hello
>>> print(‘{a} {tom} {a}‘.format(tom=‘hello‘,a=‘world‘))  # 带关键字
world hello world

原文地址:https://www.cnblogs.com/lalalaxpf/p/9500853.html

时间: 2024-11-09 19:17:29

python——格式化输出、占位符、format()的相关文章

【Rollo的Python之路】Python:格式化输出:%与format

%用法: 1.0 整数的输出 %o —— oct 八进制%d —— dec 十进制%x —— hex 十六进制 >>> print('%o' % 20) 24 >>> print('%d' % 20) 20 >>> print('%x' % 20) 14 2.0 浮点数输出 %f 3.0 字符串输出 %d >>> print('%s' % 'hello world') # 字符串输出 hello world print("%

Python格式化输出字符串 (%, format(), f'')

格式说明符/占位符:% 目的:格式与内容分离,制作复杂的公共字符串模板,让某些位置变成动态可输入的. 用法:' %[datatype]  '  % (data, data, ...) %前设置输出格式,用引号括起来:%后设置输出内容,格式部分有几个%,内容部分就有几个数据,多个数据时用小括号括起来,并用逗号分隔. 需要输出%时,可以用%%转义,就取消了占位符的作用 print('3%%%s' % 'gg') 结果: 3%gg 整型 %o 八进制 ,%d  (或%i)十进制,%x 十六进制 pri

Python格式化输出

python 格式化输出细节,以备忘 转载自: http://www.cnblogs.com/plwang1990/p/3757549.html 1. 打印字符串 print ("His name is %s" % ("David")) 2.打印整数 print ("He is %d years old" % (25)) 3.打印浮点数 print ("His height is %f m" % (1.83)) 4.打印浮点数

黑马程序员-c语言基础:各种数据类型的输出占位符

c语言中的输出操作相对java来说是比较麻烦的,每种数据类型的输出都有各自的占位符: 下面是各种数据类型的输出占位符: short/int : %d int a = 1; printf("这个整数是:%d", a); long: %ld; (long 是int得修饰,不能算是一种单独的数据类型,只是比int多了四个字节的存储空间) long long: %lld char : %c float/double : %f  float默认是6位小数输出:可以在%f中控制:例如:%.2f:输

python格式化输出及大量案例

python格式化输出符号及大量案例 1.格式化输出符号 python格式化输出符号 格式化符号 含义 %c 转化成字符 %r 优先使用repr()函数进行字符串转化 %s 转换成字符串,优先使用str() %d或%i 转化成有符号十进制 %u 转化成无符号十进制 %o 转化成无符号八进制数 %x或%X 转化成无符号十六进制数,x或X代表转化后以小写或者大写形式输出 %e或%E 转化成科学计数法,e或E代表以小写或者大写形式输出 %f或%F 转化成浮点数 %g或%G %e和%f 或 %E和%F的

python基础知识梳理----2格式化输出,替换符

一:格式化输出 1: 格式: 例子: name=input('请输入name') print('名字是%s'%name) %s就是代表字符串串占位符,除此之外,还有%d, 是数字占位符, 如果把上?面的age后?面的换成%d,就代表你必须只 能输入数字啦 这时对应的数据必须是int类型. 否则程序会报错 用了这么久几乎都是%s  因为这个是万能匹配 2: 强制转换 字符型转数字型    int() 例子  int('123') 输出 123  #### 数字型 强制转换  数字型转字符型   s

Python格式化输出——format用法示例

format OR % 提到Python中的格式化输出方法,一般来说有以下两种方式: print('hello %s' % 'world') # hello world print('hello {}'.format('world')) # hello world 到底哪种好呢,反正对我来说,用了.format()之后就再也不想用%了. format()不用理会数据类型,%s,%f等等我记不完: format()功能更丰富,填充方式,对齐方式都很灵活,让你的打印效果更美观: format()是官

[转]Python格式化输出

今天写程序又记不清格式化输出细节了……= =索性整理一下. python print格式化输出. 1. 打印字符串 print ("His name is %s"%("Aviad")) 效果: 2.打印整数 print ("He is %d years old"%(25)) 效果: 3.打印浮点数 print ("His height is %f m"%(1.83)) 效果: 4.打印浮点数(指定保留小数点位数) print

Python 格式化输出

2017-07-29  22:03:07 一.使用格式符%进行格式控制 %[(name)][flags][width].[precision]typecode (name):命名 flags:可以有+,-,' '或0.+表示右对齐.-表示左对齐.' '为一个空格,表示在正数的左侧填充一个空格,从而与负数对齐.0表示使用0填充 wideth : 表示显示宽度,占位个数 precision : 表示小数点后精度 typecode : 格式符为真实值预留位置,并控制显示的格式.格式符可以包含有一个类型