A Python if statement evaluates whether a condition is equal to true or false. The statement will execute a block of code if a specified condition is equal to true. Otherwise, the block of code within the if statement is not executed. We have declared a variable called health.
health = "not ok"
if health == "not ok":
print("get well soon dear")