9951 explained code solutions for 126 technologies


pythonHow to check if object is of certain type


isinstance(object, type)ctrl + c
isinstance(

returns True if object if of type type

object

object to check type of

type

type to check object against