Python Pop Quiz - Truthy or Falsey
Python supports Booleans in much the same way as other programming languages do. In Python’s case, it uses the True and False keywords. But there is also the concept of truthy and falsey. An example of a truthy value in Python is a number greater than zero (also a number less than zero), and an example of a falsey value would be an empty string. When us…


