在python中解压缩两个巨大的列表

时间:2016-12-30 18:26:57

标签: sql django python-2.7

我在python中有两个巨大的列表。让我们说

countries = ['country names'.....]
country_codes = ['ccd' .....]

我正在尝试使用for循环来解压缩数据并将其加载到数据库中,但是我收到了错误

  

" ValueError:解包的数量太多"

需要帮助......

1 个答案:

答案 0 :(得分:3)

您应该包含代码,以便更容易看到错误。我的猜测是你没有将列表压缩在一起:

for country, code in zip(countries, country_codes):
    #insert country, code into db