我需要找出如何将数字格式化为字符串。我的代码在这里:
return str(hours)+":"+str(minutes)+":"+str(seconds)+" "+ampm
小时和分钟是整数,秒是浮点数。 str()函数将所有这些数字转换为十分之一(0.1)的位置。因此,而不是我的字符串输出“5:30:59.07 pm”,它将显示类似“5.0:30.0:59.1 pm”的内容。
最重要的是,我需要为我做什么库/功能?
答案 0 :(得分:129)
从Python 3.6开始,Python中的格式化可以使用formatted string literals或 f-strings 完成:
hours, minutes, seconds = 6, 56, 33
f'{hours:02}:{minutes:02}:{seconds:02} {"pm" if hours > 12 else "am"}'
或str.format
函数以2.7开头:
"{:02}:{:02}:{:02} {}".format(hours, minutes, seconds, "pm" if hours > 12 else "am")
或string formatting %
operator甚至更早版本的Python,但请参阅文档中的说明:
"%02d:%02d:%02d" % (hours, minutes, seconds)
对于您格式化时间的具体情况,有time.strftime
:
import time
t = (0, 0, 0, hours, minutes, seconds, 0, 0, 0)
time.strftime('%I:%M:%S %p', t)
答案 1 :(得分:93)
从Python 2.6开始,有一种替代方法:str.format()
方法。以下是使用现有字符串格式运算符(%
)的一些示例:
>>> "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'
以下是相应的代码段,但使用的是str.format()
:
>>> "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版本(到目前为止)都了解如何做到这两点。我无耻地直接从my hardcore Python intro book以及Intro + Intermediate Python courses I offer的幻灯片中不时地撕掉这些东西。 :-)
2018年8月更新:当然,现在我们已经the f-string feature in 3.6,我们需要的等效示例,是另一种选择:
>>> 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'
答案 2 :(得分:8)
可以使用format()
功能,因此在您的情况下,您可以使用:
return '{:02d}:{:02d}:{:.2f} {}'.format(hours, minutes, seconds, ampm)
使用此功能的方法有多种,因此有关详细信息,请查看documentation。
f-strings是一种新功能,已添加到Python 3.6中的语言中。这有利于格式化字符串:
return f'{hours:02d}:{minutes:02d}:{seconds:.2f} {ampm}'
答案 3 :(得分:3)
您可以使用C样式字符串格式:
"%d:%d:d" % (hours, minutes, seconds)
请参阅此处,尤其是:https://web.archive.org/web/20120415173443/http://diveintopython3.ep.io/strings.html
答案 4 :(得分:1)
您可以使用以下功能来实现所需的功能
"%d:%d:d" % (hours, minutes, seconds)
答案 5 :(得分:1)
您可以使用str.format()使Python识别字符串中的任何对象。
答案 6 :(得分:0)
str()整数将不打印任何小数位。
如果你有一个想要忽略小数部分的浮点数,那么你可以使用str(int(floatValue))。
以下代码可能会证明:
>>> str(5)
'5'
>>> int(8.7)
8
答案 7 :(得分:0)
答案 8 :(得分:0)
我已经在Python 3.6.9中尝试过
>>> hours, minutes, seconds = 9, 33, 35
>>> time = f'{hours:02}:{minutes:02}:{seconds:02} {"pm" if hours > 12 else "am"}'
>>> print (time)
09:33:35 am
>>> type(time)
<class 'str'>