# Number.is_int ## Function Determine whether the current number is an integer. ## Syntax ```bt number.is_int() ``` ## Parameters None. ## Return value | Type | Description | | ------ | ------ | | Bool | Returns true for an integer, false otherwise. | ## Code Example ```bt result = (10).is_int() // Output: true print result ``` ## Notes - Returns true also when the Float value has no decimal part.