not less than in python3 code example
Example 1: not greater than symbol python
if not a > 70:
print(' The number is Not bigger than 70')
else:
print(' The number is DEFINITELY bigger than 70')
Example 2: how to write a does not equal in python
1!=0
##This is an examle of a "does not equal" statement##