------
## 最终结论
```python
def frequency(arr, num):
    return arr.count(num)
```