Find the error.a=bool(0) b=bool(1) print(a==false) print(b==true)
Answers
Answered by
5
Answer:
True
True
Explanation:
bool(0) value is False
bool(1) value is True
so both are true
PLEASE MARK ME AS BRAINLIEST
Similar questions