按网上说的,都安装了。运行时一直报错:TypeError: argument of type 'Key' is not iterable。
在网上下载的也是TypeError: argument of type 'Key' is not iterable。
请大神分析下,谢谢!
代码一:
import pygal_maps_world.maps
wm = pygal_maps_world.maps.World()
wm.title = 'North, Central, and South America'
wm.add('North Amerca',['ca', 'mx', 'us'])
wm.add('Central America',['bz', 'cr', 'gt', 'hn', 'ni', 'pa', 'sv'])
wm.add('South America',['ar', 'bo', 'br', 'cl', 'co', 'ec', 'gf', 'gy', 'pe',
'py', 'sr', 'uy', 've'])
wm.render_to_file('americas.svg')
代码二
import pygal
wm = pygal.maps.world.World()
wm.title = 'Populations of Countries in North America'
wm_key = {'ca':34126000, 'mx':113423000, 'us':309349000}
wm.add('North America',wm_key)
wm.render_to_file('na_populations.svg')