how to check number is whole number or not in python code example
Example 1: is int python
isinstance(n, int) # n = 9, Returns True / n = 5.5, Returns False
Example 2: how to check whole number in python
x = 1/3 # insert your number here
print(x - int(x) == 0) # True if x is a whole number, False if it has decimals.