오도원입니다.

건강과 행복을 위하여

Development/Python

list : common and mutable sequence datatype

오도원공육사 2020. 7. 13. 23:49
반응형

https://docs.python.org/3/library/stdtypes.html#sequence-types-list-tuple-range

 

Built-in Types — Python 3.8.4rc1 documentation

The following sections describe the standard types that are built into the interpreter. The principal built-in types are numerics, sequences, mappings, classes, instances and exceptions. Some collection classes are mutable. The methods that add, subtract,

docs.python.org

1. 정의

list_name = ['element1', 2, 3, [4, 5, 6], 'vaiable', 'datatype', ('is', 'possible')]

2. common sequence

common(common sequence)라는 뜻은 순서를 갖는다는 말이다. 따라서 sequence 자료형은 인덱싱이 가능하다.

 

사용가능 함수

3. mutable

mutable은 리스트 내의 원소가 변경이 가능하다는 뜻이다.

 

사용가능한 함수

출처 : python.org 공식문서

반응형