list太大?如果需要一次性得到所有结果,那慢也没法咯;否则可以考虑使用迭代器,yield
result = [float(item) for item in your_list]
这种只能循环一个个搞咯