本文实例讲述了Python实现统计给定列表中指定数字出现次数的方法。分享给大家供大家参考,具体如下:
直接看实现:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!usr/bin/env python #encoding:utf-8 ''''' __Author__:沂水寒城 功能:给定一个列表计数指定数字出现的所有次数 ''' def count_num_func(num_list,num): ''''' 计数指定数字 ''' split_list = [] for one in num_list: split_list + = list ( str (one)) print split_list.count( str (num)) if __name__ = = '__main__' : num_list = [ 1 , 12 , 34 , 56 , 112 , 1243 , 870 , 45 , 450 , 12 , 23 , 56 ] print "服务器之家测试结果:" count_num_func(num_list, 1 ) count_num_func(num_list, 0 ) |
结果如下:
希望本文所述对大家Python程序设计有所帮助。
原文链接:https://blog.csdn.net/together_cz/article/details/77493969