What will be the output of the following Python code?
class Truth:
	pass
x=Truth()
bool(x)
        class Truth:
	pass
x=Truth()
bool(x)A. pass
B. true
C. false
D. error
Answer: Option B
Related Questions on Bitwise and Boolean
class Truth:
	pass
x=Truth()
bool(x)A. pass
B. true
C. false
D. error
Answer: Option B
Join The Discussion