리스트의 특정 원소의 개수를 반환한다. 방법: 리스트이름.count(원소) ex)
arr = ["a","b","a","c","d","d","d"] str = "hello world!!!" print(arr.count("a")) # 2 print(str.count("l")) # 3