久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

大多數Pythonic方式打印*最多*一些小數位

Most Pythonic way to print *at most* some number of decimal places(大多數Pythonic方式打印*最多*一些小數位)
本文介紹了大多數Pythonic方式打印*最多*一些小數位的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我想格式化最多包含 2 個小數位的浮點數列表.但是,我不想要尾隨零,也不想要尾隨小數點.

I want to format a list of floating-point numbers with at most, say, 2 decimal places. But, I don't want trailing zeros, and I don't want trailing decimal points.

例如,4.001 => 4, 4.797 => 4.8, 8.992 => 8.99, 13.577 => 13.58.

So, for example, 4.001 => 4, 4.797 => 4.8, 8.992 => 8.99, 13.577 => 13.58.

簡單的解決方案是('%.2f' % f).rstrip('.0')('%.2f' % f).rstrip('0').rstrip('.').但是,這看起來相當丑陋,而且似乎很脆弱.任何更好的解決方案,也許有一些神奇的格式標志?

The simple solution is ('%.2f' % f).rstrip('.0')('%.2f' % f).rstrip('0').rstrip('.'). But, that looks rather ugly and seems fragile. Any nicer solutions, maybe with some magical format flags?

推薦答案

需要將0.分開剝離;這樣你就永遠不會剝離自然的 0.

You need to separate the 0 and the . stripping; that way you won't ever strip away the natural 0.

或者,使用 format() 函數,但這實際上歸結為同一件事:

Alternatively, use the format() function, but that really comes down to the same thing:

format(f, '.2f').rstrip('0').rstrip('.')

一些測試:

>>> def formatted(f): return format(f, '.2f').rstrip('0').rstrip('.')
... 
>>> formatted(0.0)
'0'
>>> formatted(4.797)
'4.8'
>>> formatted(4.001)
'4'
>>> formatted(13.577)
'13.58'
>>> formatted(0.000000000000000000001)
'0'
>>> formatted(10000000000)
'10000000000'

這篇關于大多數Pythonic方式打印*最多*一些小數位的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Python 3 Float Decimal Points/Precision(Python 3 浮點小數點/精度)
Converting Float to Dollars and Cents(將浮點數轉換為美元和美分)
What are some possible calculations with numpy or scipy that can return a NaN?(numpy 或 scipy 有哪些可能的計算可以返回 NaN?)
Python float to ratio(Python浮動比率)
How to manage division of huge numbers in Python?(如何在 Python 中管理大量數字的除法?)
mean from pandas and numpy differ(pandas 和 numpy 的意思不同)
主站蜘蛛池模板: 国产一区二区三区四区区 | 午夜成人在线视频 | 国产视频线观看永久免费 | 麻豆精品国产91久久久久久 | 国产成人午夜精品影院游乐网 | 日韩欧美久久精品 | 国产一区二区三区四区五区3d | 亚洲精品久久久久久久久久久久久 | 最新一级毛片 | 一级黄色裸片 | 国外成人免费视频 | 91观看| 欧洲成人 | 成人免费观看视频 | 国产精品视频www | 一区二区在线不卡 | 久久免费精品视频 | 九九热在线精品视频 | 国产91精品久久久久久久网曝门 | 在线一区 | 丝袜美腿一区二区三区动态图 | 精品91久久久 | 午夜影院操 | 中文字幕 亚洲一区 | 国产资源一区二区三区 | 精品国产视频 | 国产免费观看久久黄av片涩av | 在线视频一区二区 | 久久不射电影网 | 丁香综合 | 色视频在线免费观看 | 一区二区三区四区在线免费观看 | 精品久久久久久 | 欧美激情综合网 | 一区二区视频在线 | 中文字幕一区二区三区乱码在线 | 中文字幕视频一区二区 | 99热国产在线播放 | 国产精品99 | 久久免费视频网 | 国产欧美日韩精品一区 |