튜플 또는 시퀀스를 개별 변수로 나누기

튜플 또는 시퀀스를 개별 변수로 나누기¶ In [2]: p = (10, 20) x, y = p print(x, y) 10 20 In [46]: sido = (‘서울’, ‘부산’, ‘인천’) seoul, busan, inchon = sido print(“seoul = “, seoul, “, busan = “, busan, “, inchon = “, inchon) seoul = 서울 , busan = 부산 , inchon […]