len(),count() 用法总结
len()用法
import json dict_test = {'name': 'jason', 'age': 20, 'hobby': 'run', 'gender': 'male', 'birthday': '940123'} print(len(dict_test)) json_test = json.dumps(dict_test) print(len(json_test)) type_test = json_test.encode('utf-8') print(len(type_test)) """ 结果; 5 84 84 说明: 1 json_str 与 其被编码后大小是一致的 2 dict 数据被转换成json_str格式后,大小发生了比变化 -> 错 ; 这根本不是统计大小,而是: 统计K:V键值对个数 其他还有用法:
统计列表内所有元素个数;
统计元组内所有元素个数; """
count() 用法
# 统计字符串中某元素出现个数 s = '3124212323' print(s.count('3')) # 统计元组中某元素出现个数 t1 = (11, 22, 33, 44, 55, 44) print(t1.count(44))