In python, isinstance means "type judgment". isinstance() is a built-in function used to determine whether an object is a known type. The syntax is "isinstance(object, type)". If so, it returns True, otherwise it returns False; and if the type parameter is a tuple, and Object is one of the types in the tuple, then this function will also return True.
The operating environment of this tutorial: windows7 system, python3 version, DELL G3 computer
In python, isinstance means "type judgment" .
python isinstance() function
isinstance() function to determine whether an object is a known type, similar to type().
The difference between isinstance() and type():
type() does not consider the subclass to be a parent class type and does not consider the inheritance relationship.
isinstance() will consider the subclass to be a parent class type and consider the inheritance relationship.
If you want to determine whether two types are the same, it is recommended to use isinstance().
If the specified object has the specified type, the isinstance() function returns True, otherwise it returns False.
If the type parameter is a tuple, this function will return True if the object is one of the types in the tuple.
Syntax:
isinstance(object, type)
Parameters | Description |
---|---|
object | Required. object. |
type | Type or class, or a tuple of types and/or classes. |
Example 1: Check if "Hello" is one of the types described in the type parameter
x = isinstance("Hello", (str, float, int, str, list, dict, tuple)) print(x)
Example 2 : Check whether y is an instance of myObj
class myObj: name = "Bill" y = myObj() x = isinstance(y, myObj) print(x)
Extended knowledge: The difference between type and isinstance
Type in python can get a The data type of an object. isinstance can determine the data type of an object. There are two differences between them.
1. isinstance is more flexible.
type just returns the data of an object. type, and isinstance can determine whether the data type of this object is one of several data types.
Suppose we want to determine whether the data type of an object is int or float. Examples of how to write the two functions are as follows
a = 4 # 使用type if type(a) == int or type(a) == float: print('yes') # 使用isinstance if isinstance(a, (int, float)): print('yes')
Obviously, in this scenario, isinstance has more advantages
2. Determine the situation when there is an inheritance relationship
class A: pass class B(A): pass a = A() b = B() print(type(b) == A) # False print(isinstance(b, A)) # True
B is a subclass of A, type(b) returns class B, which is not equal to A, but B is of A Subclass, therefore, we can think that b is also an object of A. Faced with this situation where there is an inheritance relationship, isinstance should be used
Recommended learning:Python video tutorial
The above is the detailed content of What does isinstance mean in python. For more information, please follow other related articles on the PHP Chinese website!

Python is an interpreted language, but it also includes the compilation process. 1) Python code is first compiled into bytecode. 2) Bytecode is interpreted and executed by Python virtual machine. 3) This hybrid mechanism makes Python both flexible and efficient, but not as fast as a fully compiled language.

Useaforloopwheniteratingoverasequenceorforaspecificnumberoftimes;useawhileloopwhencontinuinguntilaconditionismet.Forloopsareidealforknownsequences,whilewhileloopssuitsituationswithundeterminediterations.

Pythonloopscanleadtoerrorslikeinfiniteloops,modifyinglistsduringiteration,off-by-oneerrors,zero-indexingissues,andnestedloopinefficiencies.Toavoidthese:1)Use'i

Forloopsareadvantageousforknowniterationsandsequences,offeringsimplicityandreadability;whileloopsareidealfordynamicconditionsandunknowniterations,providingcontrolovertermination.1)Forloopsareperfectforiteratingoverlists,tuples,orstrings,directlyacces

Pythonusesahybridmodelofcompilationandinterpretation:1)ThePythoninterpretercompilessourcecodeintoplatform-independentbytecode.2)ThePythonVirtualMachine(PVM)thenexecutesthisbytecode,balancingeaseofusewithperformance.

Pythonisbothinterpretedandcompiled.1)It'scompiledtobytecodeforportabilityacrossplatforms.2)Thebytecodeistheninterpreted,allowingfordynamictypingandrapiddevelopment,thoughitmaybeslowerthanfullycompiledlanguages.

Forloopsareidealwhenyouknowthenumberofiterationsinadvance,whilewhileloopsarebetterforsituationswhereyouneedtoloopuntilaconditionismet.Forloopsaremoreefficientandreadable,suitableforiteratingoversequences,whereaswhileloopsoffermorecontrolandareusefulf

Forloopsareusedwhenthenumberofiterationsisknowninadvance,whilewhileloopsareusedwhentheiterationsdependonacondition.1)Forloopsareidealforiteratingoversequenceslikelistsorarrays.2)Whileloopsaresuitableforscenarioswheretheloopcontinuesuntilaspecificcond


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
