Python的类型转换

1、转为float型

float(10)     #10.0
float('12.8') #12.8
float("5")    #5.0

2、转为int型

int(12.6)         #12
int(3.333333334)  #3
int("58.8")       #58

3、转为str型

str(12.5)     #"12.5"
str([1,2,3])  #"[1,2,3]"
str(dict())   #"{}"

4、round()函数

round()函数用于四舍五入

round(3.5)      #4
round(3.4)      #3
round(3.499999) #3

你可能感兴趣的:(Python,python)