Python格式字串
格式字串手冊
數字格式化
下面的表格展示了使用Python的後起新秀str.format()
格式化數字的多種方法,包含浮點數格式化與整數格式化示例。可使用print("FORMAT".format(NUMBER));
來執行示例,因此你可以執行: print("{:.2f}".format(3.1415926));
來得到第一個示例的輸出。
數字 | 格式 | 輸出 | 描述 |
---|---|---|---|
3.1415926 | {:.2f} | 3.14 | 保留小數點後兩位 |
3.1415926 | {:+.2f} | +3.14 | 帶符號保留小數點後兩位 |
-1 | {:+.2f} | -1.00 | 帶符號保留小數點後兩位 |
2.71828 | {:.0f} | 3 | 不帶小數 |
5 | {:0>2d} | 05 | 數字補零 (填充左邊, 寬度為2) |
5 | {:x<4d} | 5xxx | 數字補x (填充右邊, 寬度為4) |
10 | {:x<4d} | 10xx | 數字補x (填充右邊, 寬度為4) |
1000000 | {:,} | 1,000,000 | 以逗號分隔的數字格式 |
0.25 | {:.2%} | 25.00% | 百分比格式 |
1000000000 | {:.2e} | 1.00e+09 | 指數記法 |
13 | {:10d} | 13 | 右對齊 (預設, 寬度為10) |
13 | {:<10d} | 13 | 左對齊 (寬度為10) |
13 | {:^10d} | 13 | 中間對齊 (寬度為10) |
相關文章
- Python:字串格式化Python字串格式化
- Python 字串格式化Python字串格式化
- Python中的字串與字串格式化Python字串格式化
- Python 字串格式化(Python IO)Python字串格式化
- python字串的格式化Python字串
- Python 字串的格式化Python字串
- python中字串格式判斷Python字串
- Python 字串格式化指南Python字串格式化
- python字串格式化輸出Python字串格式化
- Python用format格式化字串PythonORM字串
- 【Python】格式化字串輸出Python字串
- Python中的字串格式化方法Python字串格式化
- python字串格式化的方法整理Python字串格式化
- Python 字串格式化輸出方式Python字串格式化
- Python知識點:字串格式化Python字串格式化
- python input 使用和字串格式化Python字串格式化
- 深入淺出Python字串格式化Python字串格式化
- python學習之字串常用方法和格式化字串Python字串
- python為什麼要字串格式化Python字串格式化
- 如何使用 Python 進行字串格式化Python字串格式化
- 【轉】Python格式化字串str.format()Python字串ORM
- 教你Python格式化字串的3種方法Python字串
- Python 學習筆記(6)— 字串格式化Python筆記字串格式化
- Python中format函式字串格式化入門PythonORM函式字串格式化
- Python新型字串格式漏洞分析及解決方案Python字串
- Python基礎 - 字串格式化 (%操作符)Python字串格式化
- Python程式設計基礎:f-字串格式Python程式設計字串
- [轉]Python格式化字串的4種方式Python字串
- python字串格式化的過程中自動改變了格式Python字串格式化
- Python基礎之好玩的字串格式化f-string格式Python字串格式化
- 字串 格式化字串
- 格式化字串字串
- python強大的字串格式化函式 - formatPython字串格式化函式ORM
- Python中對字串格式化的方法:%、format()、以及f+字串詳解Python字串格式化ORM
- Golang字串格式化Golang字串格式化
- Golang 字串 格式化Golang字串
- Python 使用者輸入和字串格式化指南Python字串格式化
- python--字串格式化用於批量讀取圖片Python字串格式化