If Statements
Lesson 16Author : 🦒
Last Updated : October, 2017
if is_student and is_smart: print("You are a student") elif is_student and not(is_smart): print("You are not a smart student") else: print("You are not a student and not smart")
>, <, >=, <=, !=, ==
if 1 > 3: print("number omparison was true")
if "dog" == "cat": print("string omparison was true")