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
class Truth:
pass
x=Truth()
bool(x)
A. pass
B. true
C. false
D. error
Answer: Option B
Join The Discussion