06-Introduction to numeric types in python video 6

Опубликовано: 03 Ноябрь 2024
на канале: Shaiq Malghani
2
0

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))