Python - List len(), 리스트 크기

파이썬에서 리스트의 size를 계산할 때 len() 함수를 사용하면 됩니다.

1. len()으로 리스트의 크기

len()은 다음과 같이 인자로 전달된 sequence(list, tuple 등)의 크기를 리턴합니다.

len(s)

Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple, list, or range) or a collection (such as a dictionary, set, or frozen set).

list 또한 collection 및 sequence에 해당하며, 다음과 같이 len()으로 크기를 계산할 수 있습니다.

my_list = []
print(len(my_list))

my_list = [10, 22, 19]
print(len(my_list))

Output:

3
0

2. tuple, dict, range의 크기 확인

tuple, dictionary, range의 크기도 len()으로 계산할 수 있습니다.

my_tuple = (10, 22, 19, 23)
print(len(my_tuple))

my_dict = {1: 'a', 2: 'b'}
print(len(my_dict))

my_range = range(1, 10)
print(len(my_range))

Output:

4
2
9

3. byte, string의 길이

byte와 string의 크기도 len()으로 계산할 수 있습니다.

str = 'Python'
print(len(str))

byte = b'Python'
print(len(byte))

Output:

6
6

참고

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha