dictionary

brian·2022년 5월 1일
0

1. Set과 Dictionary

공통점

  • 중복 불가능

차이점

  • set은 key값만 존재
  • dictionary는 key : value의 구조

2. List와 Tuple의 차이

공통점

  • 다른 type의 데이터를 담을 수 있다. (int, float, str ...)
  • iterable

차이점

  • list는 변경가능하지만, tuple은 변경 불가

0개의 댓글