본문 바로가기
Python

[python] 파이썬 sequence 자료형

by clolee 2021. 12. 19.

파이썬 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

 

 

댓글