Added in Version 1.0
Removed in Version 1.1
oddint(integer)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
from pydoodles import oddint
oddint(10)
False
oddint(12)
False
oddint(13)
True
oddint(15)
True
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
oddint() was removed in 1.1 due its redundancy in relation to evenint(). If you wish to conduct tests for odd integers, consider using evenint() and checking for a False value.