Return the boolean value True
if the case-lowered value of string
input s
is any of t
, true
, y
, on
, or 1
, otherwise
return the boolean value False
. If s
is the value None
,
return False
. If s
is already one of the boolean values True
or False
, return it.