Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 253 Bytes

advanced_data_types_solution.md

File metadata and controls

9 lines (7 loc) · 253 Bytes

(Advanced) Identify the data type

For each of the following, identify what is the data type of the result variable

  1. a = {'a', 'b', 'c'} -> set
  2. b = {'1': '2'} -> dict
  3. c = ([1, 2, 3]) -> list
  4. d = (1, 2, 3) -> tuple
  5. e = True+True -> int