python -m means code example

Example 1: what is python -m

#The -m option allows you to execute a module or package as a script.
>>> python -m <module>

Example 2: x and y in python

x = 10
y = 12

# Output: x > y is False
print('x > y is',x>y)

# Output: x < y is True
print('x < y is',x<y)

# Output: x == y is False
print('x == y is',x==y)

# Output: x != y is True
print('x != y is',x!=y)

# Output: x >= y is False
print('x >= y is',x>=y)

# Output: x <= y is True
print('x <= y is',x<=y)

Example 3: ** in python

# ** means modulus. or exponent
x = 6
y = 2
print(x**y) # will print 6 raised to power 2

Example 4: x and y in python

x > y is False
x < y is True
x == y is False
x != y is True
x >= y is False
x <= y is True