파이썬 sequence 자료형
sequence 자료형 : 값이 연속적으로 이어진 자료형
- list
- tuple
- range
- str
- bytes
- bytearray
시퀀스 객체 : 시퀀스 자료형으로 만든 객체
요소 (element) : 시퀀스 객체에 들어있는 각각의 값
list1 = [1, 2, 3, 4, 5]
list1 = 시퀀스 객체
1, 2, 3, 4, 5 = element
l = [0, 10, 200, 3000, 40000]
t = (1, 2, 3, 4, 5, 6, 7)
r = range(5)
s = "hello"
200 in l
40 in l
40 not in l
7 in t
4 in r
5 in r
"h" in s
참고 :
https://dojang.io/mod/page/view.php?id=2205
https://docs.python.org/3/reference/expressions.html#in
'Python' 카테고리의 다른 글
[python] 파이썬 숫자 각 자리수 분리 (0) | 2021.12.17 |
---|---|
[python] 함수 실행 후 None이 출력 될 때 (0) | 2021.12.17 |
[python] 함수 안에서 함수 밖의 변수를 변경하기 (0) | 2021.12.02 |
[python] dictionary key error 해결 하여 key 접근 방법 (0) | 2021.11.29 |
[python] 파이썬 람다 함수 사용하기 (python lambda expression) (0) | 2021.10.25 |
댓글