According to the Python documentation:
The principal built-in types are numerics, sequences, mappings, classes, instances and exceptions.
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Text Sequence Type: str
Binary Sequence Types: bytes, bytearray, memoryview
Set Types: set, frozenset
Mapping Types: — dict
Other Built-in Types:
Modules, Classes and Class Instances, Functions, Methods, Code Objects, Type Objects, the Null Object (None), the Ellipsis Object, the NotImplemented Object, Boolean Values (True and False), Internal Objects.
Answering your question:
Are integers and float numbers considered to be the same data type?
There are three distinct numeric types: integers, floating point numbers, and complex numbers. Floating point numbers are usually implemented using double in C.
Probably you are a bit confused because mathematically speaking any number of type int and any number of type float belong to the set of the real numbers. The numbers module defines a hierarchy of numeric abstract base classes: Number, Complex, Real, Rational, and Integral. However, none of the types defined in this module can be instantiated.
You can use these classes to check if a specific number is an instance of them:
In[1]: import numbers
In [2]: isinstance(10, numbers.Integral)
Out[2]: True
In [3]: isinstance(10.5, numbers.Integral)
Out[3]: False