DrZhang Instead of creating two if statements, we use an if/else statement to achieve the same result. Code else print("no"); >>> check = False >>> if check: ... print("yes") ... else: ... print("no") ... no