输出格式化 Python 3.2
我有一个关于程序输出的问题。
def writeOutput():
output.write(str(gallons) + '\n')
output.write(str(usage) + '\n')
output.write(str(sewer) + '\n')
output.write(str(tax) + '\n')
output.write(str(total) + '\n')
output.write('_______________________' + '\n')
这是我的写入文件功能。 有谁知道我在哪里可以找到如何将 123.45 写成“123 美元 45 美分”,并用美元和美分这样拼写?
谢谢!
I have a question relating to the output of a program.
def writeOutput():
output.write(str(gallons) + '\n')
output.write(str(usage) + '\n')
output.write(str(sewer) + '\n')
output.write(str(tax) + '\n')
output.write(str(total) + '\n')
output.write('_______________________' + '\n')
This is my write to file function.
Does anybody know where I can look to find out how to write 123.45 as "123 dollars 45 cents" with dollars and cents spelled out like that?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这会起作用:
This would work:
如果您将
amount
存储为float
(*),则可以使用%
格式化运算符,如下所示:或
(*) 您应该使用哪个永远不要在真正的金融应用程序中这样做,因为浮点很容易出现舍入错误;请改用
Decimal
模块。If you have
amount
stored as afloat
(*), you can use the%
formatting operator as follows:or
(*) Which you should never do in a real financial app, since floating point is prone to rounding errors; use the
Decimal
module instead.在 Python 3(全部 3.x?)中,对于“简单”浮点数,您可以编写:
输出:
显然,str() 会搞乱浮点数,如
1.0000000001e-15
In Python 3 (all 3.x?) for "simple" floats you can write:
Output:
Apparently, str() will screw float numbers like
1.0000000001e-15