값이 연속적(sequence)으로 이어져있는 자료형.
파이썬에서는 list, tuple, range, str, bytes, bytearray
이 있다.
a = [0, 10, 20.. ]
2 in a
>> False
a = [0, 10, 20.. ]
2 not in a
>> True
range(0, 10) + range(10, 20)
list(range(0, 10)) + list(range(10, 20))
tuple(range(0, 10)) + tuple(range(10, 20))
range(0, 5, 2) * 3
list(range(0, 5, 2)) * 3
'Hello, ' * 3
a = [0, 10, 20, 30, 40, 50, 60, 70, 80, 90]
len(a)
hello = '안녕하세요'
len(hello.encode('utf-8')) # 15
test1 = 'ㅇ'
test2 = 'a'
test3 = '1'
test4 = 'あ'
print(len(test1.encode('utf-8'))) # 3
print(len(test2.encode('utf-8'))) # 1
print(len(test3.encode('utf-8'))) # 1
print(len(test4.encode('utf-8'))) # 3