파이썬 count()

(Python count()에서 넘어옴)

1 개요[ | ]

Python count()
파이썬 count()
lst = ['Alice','Bob','Alice','Carol']
print( lst.count('Alice') )
# 2
fruits = ['Banana', 'Orange', 'Apple', 'Orange', 'Orange']
print( fruits.count('Orange') )
# 3

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}