Explore Library
Code QuizBeginner

Boolean Logic Operators

Spot the wrong logical operator in this condition.

Codepython
a = True
b = False
if a && b:
    print("both true")

What is the bug in this code?