true_or_false.md

April 9, 2022 ยท View on GitHub

True or False?

What is the result of each of the following statements?

  1. bool(1) - True
  2. bool("2017") - True
  3. bool("") - False
  4. bool(0) - False
  5. bool() - False
  6. bool(" ") - True
  7. True-True - 0 :)