python equals code example

Example 1: python larger or equal

# To test if something is larger or equal use '>='
5 >= 10
# Output:
# False

Example 2: string equals python

str1 == str2
# return True if the strings are equals. Case sensitive !
str1 = "python"
str2 = "python"
str1 == str2 # True

str1 = "python"
str2 = "javascript"
str1 == str2 # False

str1 = "python"
str2 = "PYTHON"
str1 == str2 # False

Example 3: how to write a does not equal in python

1!=0

##This is an examle of a "does not equal" statement##

Example 4: python comparison operators

# Below follow the comparison operators that can be used in python
# == Equal to
42 == 42 # Output: True
# != Not equal to
'dog' != 'cat' # Output: True
# < Less than
45 < 42 # Output: False
# > Greater Than
45 > 42 # Output: True
# <= Less than or Equal to
40 <= 40 # Output: True
# >= Greater than or Equal to
39 >= 40 # Output: False

Example 5: what is not equals in python

10 = 10 #It does equal.
10 != 3 #It does NOT equal.

Tags:

Css Example