Python入门示例系列17 输入与输出
读取键盘输入
Python 提供了 input() 内置函数从标准输入读入一行文本,默认的标准输入是键盘。
>>> str = input("请输入:"); 请输入:123 >>> print(str) 123
输出
只想快速显示变量进行调试,可以用 repr()
或 str()
函数把值转化为字符串。
f' '
使用 格式化字符串字面值 ,要在字符串开头的引号/三引号前添加 f 或 F 。在这种字符串中,可以在 { 和 } 字符之间输入引用的变量,或字面值的 Python 表达式。
>>> name="Sam" >>> age=20 >>> f'{name} is {age} yeas old.' 'Sam is 20 yeas old.'
str.format()
字符串的 str.format() 方法需要更多手动操作。该方法也用 { 和 } 标记替换变量的位置,虽然这种方法支持详细的格式化指令,但需要提供格式化信息。
标准格式说明符 的一般形式如下:
format_spec ::= [[fill]align][sign][#][0][width][grouping_option][.precision][type] fill ::= <any character> align ::= "<" | ">" | "=" | "^" sign ::= "+" | "-" | " " width ::= digit+ grouping_option ::= "_" | "," precision ::= digit+ type ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
各种对齐选项的含义如下:
选项 |
含意 |
---|---|
|
强制字段在可用空间内左对齐(这是大多数对象的默认值)。 |
|
强制字段在可用空间内右对齐(这是数字的默认值)。 |
|
强制字段在可用空间内居中。 |
sign 选项仅对数字类型有效,可以是以下之一:
选项 |
含意 |
---|---|
|
表示标志应该用于正数和负数。 |
|
表示标志应仅用于负数(这是默认行为)。 |
width 是一个定义最小总字段宽度的十进制整数,包括任何前缀、分隔符和其他格式化字符。 如果未指定,则字段宽度将由内容确定。
precision 是一个十进制数字,表示对于以 'f'
and 'F'
格式化的浮点数值要在小数点后显示多少个数位,或者对于以 'g'
或 'G'
格式化的浮点数值要在小数点前后共显示多少个数位。
type 确定了数据应如何呈现。
可用的字符串表示类型是:
类型
含意
's'
字符串格式。这是字符串的默认类型,可以省略。
可用的整数表示类型是:
类型 |
含意 |
---|---|
|
二进制格式。 输出以 2 为基数的数字。 |
|
字符。在打印之前将整数转换为相应的unicode字符。 |
|
十进制整数。 输出以 10 为基数的数字。 |
|
八进制格式。 输出以 8 为基数的数字。 |
|
十六进制格式。 输出以 16 为基数的数字,使用小写字母表示 9 以上的数码。 |
|
十六进制格式。 输出以 16 为基数的数字,使用大写字母表示 9 以上的数码。 在指定 |
类型 |
含意 |
---|---|
|
科学计数法。 对于一个给定的精度 |
|
科学计数法。 与 |
|
定点表示法。 对于一个给定的精度 |
|
定点表示。 与 |
|
百分比。 将数字乘以 100 并显示为定点 ( |
格式示例
按位置访问参数:
>>> '{0}, {1}, {2}'.format('a', 'b', 'c') 'a, b, c' >>> '{}, {}, {}'.format('a', 'b', 'c') # 3.1+ only 'a, b, c' >>> '{2}, {1}, {0}'.format('a', 'b', 'c') 'c, b, a' >>> '{2}, {1}, {0}'.format(*'abc') # unpacking argument sequence 'c, b, a' >>> '{0}{1}{0}'.format('abra', 'cad') # arguments' indices can be repeated 'abracadabra'
按名称访问参数:
>>> 'Coordinates: {latitude}, {longitude}'.format(latitude='37.24N', longitude='-115.81W') 'Coordinates: 37.24N, -115.81W' >>> coord = {'latitude': '37.24N', 'longitude': '-115.81W'} >>> 'Coordinates: {latitude}, {longitude}'.format(**coord) 'Coordinates: 37.24N, -115.81W'
访问参数的项:
>>> coord = (3, 5) >>> 'X: {0[0]}; Y: {0[1]}'.format(coord) 'X: 3; Y: 5'
对齐文本以及指定宽度:
>>> '{:<30}'.format('left aligned') 'left aligned ' >>> '{:>30}'.format('right aligned') ' right aligned' >>> '{:^30}'.format('centered') ' centered '
替代 %x 和 %o 以及转换基于不同进位制的值:
>>> # format also supports binary numbers >>> "int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}".format(42) 'int: 42; hex: 2a; oct: 52; bin: 101010'
使用逗号作为千位分隔符:
>>> '{:,}'.format(1234567890) '1,234,567,890'
表示为百分数:
>>> points = 19 >>> total = 22 >>> 'Correct answers: {:.2%}'.format(points/total) 'Correct answers: 86.36%'
使用特定类型的专属格式化:
>>> import datetime >>> d = datetime.datetime(2010, 7, 4, 12, 15, 58) >>> '{:%Y-%m-%d %H:%M:%S}'.format(d) '2010-07-04 12:15:58'
REF
https://docs.python.org/zh-cn/3/tutorial/inputoutput.html
https://docs.python.org/zh-cn/3/library/string.html#formatspec
https://www.runoob.com/python3/python3-inputoutput.html