Ile typów danych jest określonych do wartości liczbowych w Pythonie
There are three numeric types in Python:
1) int
2) float
3) complex
#for example
x = 1 # int
y = 2.8 # float
z = 1j # complex
print(type(x))
print(type(y))
print(type(z))
Programmer of empires