Python 數字操作
float保留指定位數
a = 0.017685447
b = '%.5f' % a # 保留小數點後5位
Python的defaultdict類
defaultdict 能為不存在dict中的key給一個預設的value。比起普通的python dict,省去了自己判斷遇到的key是否已在dict中。
from collections import defaultdict
Python的Counter類
Counter是dict的一個子類
使用Couter可以很方便的統計list中每個元素出現的次數,如下:
from collections import Counter
a = list('aabbbcc') # a=['a', 'a', 'b', 'b', 'b', 'c', 'c']
Counter(a) # 輸出:{'b': 3, 'a': 2, 'c': 2}
Counter還有其他更多功能。
相關文章
- Python 數字Python
- Awk 字串連線操作(字串轉數字,數字轉字串)字串
- Python Number(數字)Python
- Python基礎-列表操作(2):列表的遍歷和數字列表Python
- 數字轉中文 pythonPython
- python將中文數字轉化成阿拉伯數字Python
- Python 英文的月份轉數字及數字轉英文Python
- python學習之數字Python
- Python基礎(三)數字Python
- Python關鍵字引數Python
- Python 轉換金額數字大寫為數字小寫Python
- shell下數字和字串比較操作命令字串
- 認識python中的數字Python
- python學習-數字和列表Python
- Python學習筆記——Python Number(數字)Python筆記
- 【美妙的Python之四】變數:數字、字串Python變數字串
- 怎麼判斷Python數字中的偶數Python
- [work] python list中數字與一個數相乘Python
- Python學習筆記 - 字串,數字Python筆記字串
- Python金融數字貨幣量化投資Python
- Python數字轉換中文大寫Python
- python 數字 十六進位制 列印Python
- Python 函式 (關鍵字引數)Python函式
- 【刷力扣】1342. 將數字變成 0 的操作次數力扣
- excel下拉數字不遞增只複製 excel表格下拉數字不遞增怎麼操作Excel
- python變數命名為什麼數字不能開頭?Python變數
- LeetCode_Python(13)_羅馬數字轉整數LeetCodePython
- python-leetcode13羅馬數字轉整數PythonLeetCode
- Python函式/動態引數/關鍵字引數Python函式
- Python 複數屬性及操作介紹Python
- Python 數字運算及格式化Python
- Python標準資料型別-數字Python資料型別
- Python 工匠:使用數字與字串的技巧Python字串
- Python中如何將字串變成數字?Python字串
- 力扣 1342. 將數字變成 0 的操作次數 C++力扣C++
- Python判斷字串是否為字母或者數字(浮點數)Python字串
- python中關鍵字引數的個數有限制嗎?Python
- [轉載] python複數型別-Python 複數屬性和方法操作例項Python型別