将字符串列表的元素进行类型转换str_list = ["1","2","3","4","5"]
#float_list = list(map(float,str_list))
for i in range(str_list):
st
2020-04-06