數字類型

整型和浮點型統稱爲數字類型。code

1、整型(int)

1.1 做用

表示人的年齡、各類號碼、級別it

1.2 定義

age = 18  # age=int(18)

print(id(age))
print(type(age))
print(age)
4530100848
<class 'int'>
18

1.3 如何用

加減乘除、邏輯判斷(大於、小於)class

2、浮點型(float)

2.1 做用

表示身高、體重、薪資float

2.2 定義

salary = 2.1  # salary=float(2.1)

print(id(salary))
print(type(salary))
print(salary)
4569240656
<class 'float'>
2.1

2.3 如何用

加減乘除、邏輯判斷(大於、小於)di

相關文章
相關標籤/搜索