BC126 小乐乐查找数字

思路:

step1:使用count()计数;

代码如下:

n = input()
ls = list(map(int,input().split()))
m = int(input())
print(ls.count(m))