强制类型转换
int 函数
- 把符合数学格式的数字型字符串转换成整数
- 把浮点数转换成整数,但是只是简单的取整,而非四舍五入。
float函数
将整数和字符串转换为浮点数
str 函数
将数字转换为字符
list 和 tuple
tuple转list list(tup)
list转tuple tuple(list)
String转list
简单转换 list函数
list(str)
将字符串中的每一个字母作为列表中的一个元素,空格也算一个元素
hi = "hi world"
list(hi)
['h','i',' ','w','o','r,','l','d']
指定分隔符
split
s = "hello,world"
slist = s.split(",")
//['hello','world']
网友评论