is int a function in python code example
Example 1: is int python
isinstance(n, int) # n = 9, Returns True / n = 5.5, Returns False
Example 2: what does int do in python
#basically turns a string or a float into a number aka a integer
num = int("147")