In this section, we are covering
Numeric Types:
Integers:
You can copy and paste the following code and you can make modifications to practice
number1 = 19
print(type(number1))
number2 = -84
print(type(number2))
Floating Point Numbers:
You can copy and paste the following code and you can make modifications to practice
number1 = 19.4
print(type(number1))
number2 = -84.1
print(type(number2))