[Effective Python] | August 24, 2020
Effective Python: Second Edition 내용 정리
TypeError
발생tuple의 index로 접근하는 것보다 unpacking 하는 것이 훨씬 깔끔하고 때로는 코드 줄 수가 더 적다.
굳이 index로 접근해야 하는 경우는 잘 없다.
item = ('A', 'B')
first, second = item
print(first, 'and', second)
>>> A and B