Let's recap by reviewing the different datatypes we have learned so far:
True
and False
,
equivalently 1 and 0.
True
, False
Let's conclude this section with a quick recap of data structures as well:
[1, 2, 3]
, ["a", "b", "c"]
(1, 2, 3)
, ("a", "b", "c")
{1, 2, 3}
, {"a", "b", "c"}
{1: "a", 2: "b", 3: "c"}
, {"a": 1, "b": 2, "c": 3}