橘子味的心
标题:Python3 列表List Count 方法

Python3 列表List Count 方法

#!/usr/bin/python3

aList = [123, 'xyz', 'zara', 'abc', 123];

print ("Count for 123 : ", aList.count(123))
print ("Count for zara : ", aList.count('zara'))

目录

分类