DrZhang We've seen the basic data types in Python —— strings, integers, floats, and booleans. If we are unsure of a value type, we can check it. Here, type() checks that box is a bool, which is short for booleawn. >>> box = True >>> type(box) <class 'bool'>