Format numbers to strings in Python
我需要了解如何将数字格式化为字符串。我的代码在这里:
1 | return str(hours)+":"+str(minutes)+":"+str(seconds)+""+ampm |
小时和分钟是整数,秒是浮点。函数的作用是:将所有这些数字转换为十分之一(0.1)。因此,它将显示类似于"5.0:30.0:59.1 pm"的内容,而不是输出"5:30:59.07 pm"的字符串。
底线是,我需要为我做什么库/函数?
从python 3.6开始,可以使用格式化字符串文本或F字符串来完成python中的格式化:
1 2 | hours, minutes, seconds = 6, 56, 33 f'{hours:02}:{minutes:02}:{seconds:02} {"pm" if hours > 12 else"am"}' |
或从2.7开始的
1 | "{:02}:{:02}:{:02} {}".format(hours, minutes, seconds,"pm" if hours > 12 else"am") |
号
或者字符串格式的
1 | "%02d:%02d:%02d" % (hours, minutes, seconds) |
对于格式化时间的具体情况,有
1 2 3 4 | import time t = (0, 0, 0, hours, minutes, seconds, 0, 0, 0) time.strftime('%I:%M:%S %p', t) |
。
从python 2.6开始,有一个替代方法:
1 2 3 4 5 6 7 8 9 10 11 12 | >>>"Name: %s, age: %d" % ('John', 35) 'Name: John, age: 35' >>> i = 45 >>> 'dec: %d/oct: %#o/hex: %#X' % (i, i, i) 'dec: 45/oct: 055/hex: 0X2D' >>>"MM/DD/YY = %02d/%02d/%02d" % (12, 7, 41) 'MM/DD/YY = 12/07/41' >>> 'Total with tax: $%.2f' % (13.00 * 1.0825) 'Total with tax: $14.07' >>> d = {'web': 'user', 'page': 42} >>> 'http://xxx.yyy.zzz/%(web)s/%(page)d.html' % d 'http://xxx.yyy.zzz/user/42.html' |
。
以下是等效的代码片段,但使用
1 2 3 4 5 6 7 8 9 10 11 12 | >>>"Name: {0}, age: {1}".format('John', 35) 'Name: John, age: 35' >>> i = 45 >>> 'dec: {0}/oct: {0:#o}/hex: {0:#X}'.format(i) 'dec: 45/oct: 0o55/hex: 0X2D' >>>"MM/DD/YY = {0:02d}/{1:02d}/{2:02d}".format(12, 7, 41) 'MM/DD/YY = 12/07/41' >>> 'Total with tax: ${0:.2f}'.format(13.00 * 1.0825) 'Total with tax: $14.07' >>> d = {'web': 'user', 'page': 42} >>> 'http://xxx.yyy.zzz/{web}/{page}.html'.format(**d) 'http://xxx.yyy.zzz/user/42.html' |
像python 2.6+一样,所有的python 3版本(到目前为止)都了解如何做到这两个点。我不知羞耻地直接从我的python入门书和我不时提供的intro+中级python课程的幻灯片上撕下这些东西。埃多克斯1〔6〕
2018年8月更新:当然,既然我们在3.6中有了F-string特性,我们需要类似的例子,是的,另一种选择:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | >>> name, age = 'John', 35 >>> f'Name: {name}, age: {age}' 'Name: John, age: 35' >>> i = 45 >>> f'dec: {i}/oct: {i:#o}/hex: {i:#X}' 'dec: 45/oct: 0o55/hex: 0X2D' >>> m, d, y = 12, 7, 41 >>> f"MM/DD/YY = {m:02d}/{d:02d}/{y:02d}" 'MM/DD/YY = 12/07/41' >>> f'Total with tax: ${13.00 * 1.0825:.2f}' 'Total with tax: $14.07' >>> d = {'web': 'user', 'page': 42} >>> f"http://xxx.yyy.zzz/{d['web']}/{d['page']}.html" 'http://xxx.yyy.zzz/user/42.html' |
。
Python2.6+
可以使用
1 | return '{:02d}:{:02d}:{:.2f} {}'.format(hours, minutes, seconds, ampm) |
。
使用此函数有多种方法,因此有关详细信息,您可以查看文档。
Python3.6+F字符串是一个新特性,已经添加到了Python3.6中的语言中。这有助于格式化众所周知的字符串:
1 | return f'{hours:02d}:{minutes:02d}:{seconds:.2f} {ampm}' |
号
您可以使用C样式字符串格式:
1 | "%d:%d:d" % (hours, minutes, seconds) |
请参见此处,尤其是:https://web.archive.org/web/20120415173443/http://diveintopython3.ep.io/strings.html
您可以使用以下功能来实现所需的功能
1 | "%d:%d:d" % (hours, minutes, seconds) |
如果您有一个包含十进制的值,但十进制的值可以忽略不计(即:100.0),并尝试对其进行int运算,则会得到一个错误。这看起来很愚蠢,但调用float首先解决了这个问题。
str(int(float([变量]))
在python中,整数上的str()不会打印任何小数位。
如果您有一个要忽略小数部分的浮点,那么可以使用str(int(floatvalue))。
也许下面的代码将演示:
1 2 3 4 | >>> str(5) '5' >>> int(8.7) 8 |
。