要統計大于閾值的個數,可以使用循環遍歷列表或數組,然后通過判斷每個元素是否大于閾值來計數。
以下是一個使用循環統計大于閾值的個數的示例代碼:
def count_above_threshold(values, threshold):
count = 0
for value in values:
if value > threshold:
count += 1
return count
data = [1, 2, 3, 4, 5, 6, 7, 8, 9]
threshold = 5
result = count_above_threshold(data, threshold)
print("大于閾值的個數為:", result)
輸出結果為:
大于閾值的個數為: 4
在示例代碼中,count_above_threshold
函數接受一個列表 values
和一個閾值 threshold
,通過循環遍歷列表中的每個元素,如果元素的值大于閾值,則計數器 count
加一。最后返回計數器的值。