注意是因为在python中,除了''、""、0、()、[]、{}、None为False, 其他转换都为True。 也就是说字符串如果不为空,则永远转换为True。

好吧, 只能通过这样了:

data = "True"

isTrue = data == str(True)