You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If/ Else conditions are used to decide to do something based on something being true or false
# Comparison Operators (==, !=, >, <, >=, <=) - Used to compare values
# Logical operators (and, or, not) - Used to combine conditional statements
# Membership Operators (not, not in) - Membership operators are used to test if a sequence is presented in an object
# Identity Operators (is, is not) - Compare the objects, not if they are equal, but if they are actually the same object, with the same memory location: