如何正确处理python错误

时间:2016-03-09 20:21:34

标签: python error-handling folium

我知道解决方案离这里不远,但我正在努力实现根据用户输入分配数值来映射比例的能力。代码非常自我解释,但我希望用户从4种缩放状态中选择,使用输入,将数值返回到我的地图作为缩放起始点。

for (index in index_map)
fun <- function (x) merge (values[[x]] , index , by = names (index_map[[x]]) [1])
lapply (seq(length(index_map)),fun) 

Error in setkeyv(copy(y), by) : 
Column 'V1' is type 'list' which is not supported as a key column type, currently.

现在,我可以为zoom_state添加任何内容,它将会运行。

提前致谢!

1 个答案:

答案 0 :(得分:2)

你可能正在寻找这样的东西:

List<string> lines = new List<string>();
foreach (string ss in fileLines)
{
   string filelinesclean = System.Text.RegularExpressions.Regex.Replace(ss, @"\s+", " ");
   lines.Add(filelinesclean);
}
System.IO.File.WriteAllLines(@"C:\Users\Public\WriteLines.txt", lines);