Home  >  Article  >  Backend Development  >  How to determine whether python is a floating point number

How to determine whether python is a floating point number

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-06-11 14:47:3821205browse

How to determine whether python is a floating point number

#How does python determine whether it is a floating point number? The specific method is as follows:

isinstance() function

can be used to determine the type of a variable. It returns a Boolean value, False or True.

Like int, float, etc. are all basic variable types. In fact, classes are also a type of variables.

i=9,j=1.3
>>isinstance(i,float)
>>False
>>isinstance(j,float)
>>True

The above is the detailed content of How to determine whether python is a floating point number. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn