字符串->数字:
float(str)
int(str)
查看某一个变量的类型:
type(var)
python问题:
使用fromkeys(ind,int(ele))报错TypeError: ‘int‘ object is not iterable
使用sp[ind] = int(ele)就可以了,奇怪的问题
时间: 2024-10-22 10:33:44
字符串->数字:
float(str)
int(str)
查看某一个变量的类型:
type(var)
python问题:
使用fromkeys(ind,int(ele))报错TypeError: ‘int‘ object is not iterable
使用sp[ind] = int(ele)就可以了,奇怪的问题