Skip to content
Jack Martin edited this page Feb 5, 2024 · 2 revisions

Installation

$ python3 -m pip install --upgrade is-bigger

Usage

from is_bigger.functions import *

isBigger(2,1) # True
isSmaller(2,1) # False
isEqual(3,3) # True
isNotBigger(3,1) # False
isNotSmaller(3,1) # True
isNotEqual(3,1) # True

Clone this wiki locally