1 2 3 4 5
import sys print(callable(1)) print(callable("dfsd")) print(callable(callable)) print(callable(sys))