준호씨의 블로그

python - array length 구하기, array count 본문

개발이야기

python - array length 구하기, array count

준호씨 2017. 6. 11. 20:25
반응형

기본적인 방법은 len 함수를 이용하는 방법이다.

>>> list = [1,2,3,4,5]
>>> len(list)
5

array 객체의 len 함수를 이용하는 방법도 있으나 일반적이지는 않다.

>>> list.__len__()
5

개인적인 취향으로는 list.length() 같은 방식을 좋아 하지만 python 은 그러한 방식을 선호하지는 않는 것 같다.

참고

http://effbot.org/pyfaq/why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list.htm

https://docs.python.org/3/reference/datamodel.html#basic-customization

https://stackoverflow.com/questions/518021/getting-the-length-of-an-array-in-python

반응형
Comments