There's a special value that's neigher a string nor a number: that is True
.
There are no quotes around it, and it's not a numeric value.
True
is great for situations like checking if a feature is on or if data is available. We can see it here when we set is_cold
to True
.
is_cold = True
is_cold
True