Python Boolean variables and functions
Boolean values of variables of non-Boolean data types can be obtained by passing that variable as argument to bool() constructor. Empty/Zero value variables have Boolean value as False, while Non-Empty/Non-Zero value variables have Boolean value as True. These are termed Truthy and Falsy values.
Please note that Boolean value is applicable only on certain data types. Most, if not all, built-in datatypes give a valid Boolean value, but this is not applicable for variables of imported libraries (eg. pandas).
Corresponding Github File: https://github.com/AdityaGarg1995/BeginnerPython/blob/main/Boolean%20variables%20and%20functions.ipynb




Sets treat Boolean values and corresponding non-boolean values as equal, hence, only one such value can be added to a set at a time
