Python set, 객체 개념 정리
# 집합(Set) 자료형 (순서X, 중복X) # 집합(Set) 자료형 (순서X, 중복X) # 선언 a = set() b = set([1, 2, 3, 4]) c = set([1, 4, 5, 5]) d = set([1, 2, 'pen', 'seoul', 'air']) print('a : ', type(a), a) print('b : ', type(b), b) print('c : ', type(c), c) print('d : ', type(d), d) # 튜플 변환 t = tuple(b) print('t : ', type(t), t) print('t : ', t[0], t[1:3]) #리스트 변환 l = list(c) print('l : ', type(l), l) print('l : ', l[0], l[1:3..
더보기