I'm trying to get this to evaluate to false.
(False,)
It's currently equaled to true, because I think the tuple is not empty. So how might one extract or cast this to a boolean? Thanks~
I'm trying to get this to evaluate to false.
(False,)
It's currently equaled to true, because I think the tuple is not empty. So how might one extract or cast this to a boolean? Thanks~
Copyright © 2021 Jogjafile Inc.
Extract the element from the tuple is the most simple approach:
Python2 is more lenient, but in general it isn't good practice to treat a tuple as a single value for comparison purposes (Python3 explicetly bans it)
Instead, look at the
and
functions for this behavior. As always, the documentation is your friend:
https://docs.python.org/2/library/functions.html#all