How can i find out if the obj returned by a func is a int or something else (like a sqlite cursor)
feedback
|
|
Use
However, explicit type checking is not considered a good practice in the Python world -- it means that much of the power of duck typing is lost: Something which walks and quacks like a duck should be allowed to be a duck, even if it isn't! :) | |||||
|
feedback
|
|
Use the built-in "type" function, e.g. type(10) -> . | |||||||||
feedback
|