Answers for "isinstance() example"

1

isinstance function python

x = isinstance(5, int) 
y = isinstance(6.5, int)
print(x)
print(y)

output:
True
False
Posted by: Guest on July-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language