编写一个Python函数,该函数接受一个整数列表和一个整数,然后返回列表中该整数出现的次数。
时间: 2024-11-12 16:41:33 浏览: 13
当然可以。在Python中,你可以创建一个名为`count_occurrences`的函数,它接受两个参数:一个整数列表(list of integers)和一个整数(an integer)。这个函数会遍历列表,统计给定整数在列表中出现的次数,并将其作为结果返回。以下是函数的实现:
```python
def count_occurrences(lst, num):
"""
函数接收一个整数列表和一个整数,返回列表中该整数出现的次数。
参数:
lst (list): 整数列表
num (int): 需要计数的整数
返回值:
int: 给定整数在列表中的出现次数
"""
return lst.count(num)
# 示例:
numbers = [1, 2, 3, 4, 5, 2, 6, 2]
target = 2
result = count_occurrences(numbers, target)
print(f"The number {target} appears {result} times in the list.")
```
在这个例子中,你可以通过传递任何整数列表和一个特定的整数,如`count_occurrences([1, 2, 3, 4, 5, 2, 6, 2], 2)`,来获取那个数字在列表中的出现次数。
阅读全文