As we have seen in the 'Data Types' topic, there are three types of Numbers supported by Python.
x = 5
y = -14
z = 4356674543356
print(type(x))
print(type(y))
print(type(z))
x = 5
y = -14
z = 4356674543356
print(type(x))
print(type(y))
print(type(z))
<class 'int'>
x = 5.987
print(type(x))
x = 2 + 5j
print(type(x))
x = 2 + 5j
print(x.real)
print(x.imag)