Python 3.1 快速導覽 - 串列型態的 count()

串列 (list) 型態 (type) 的 count() 方法 (method) ,計算 list 中 x 出現的次數

方法描述
list.count(x)計算 list 中 x 出現的次數


舉例示範如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
a = ["a", 1, "hello", 0]
 
print(a.count(1))
a.extend([0, 1])
print()
 
print(a.count(1))
a.extend([0, 1])
print()
 
print(a.count(1))
a.extend([0, 1])
print()
 
print(a.count(1))
a.extend([0, 1])
print()
 
print(a.count(1))
 
# 《程式語言教學誌》的範例程式
# 檔名:listcount.py
# 功能:示範 Python 程式
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
串列list
型態type
方法method


內建型態




沒有留言: