我正在关注一本书(Python速成课程),但我看不到情节。这是我的代码
from pygal.maps.world import World
wm = World()
wm.title = "Population of Countries in North America"
wm.add('North America', { 'ca':34126000, 'us': 309349000, 'mx': 113423000})
#wm.render_to_file('na_populations.svg')
wm.render()
关于如何解决这个问题有什么想法吗?我正在 SublimeText 上尝试这个。
嗨,您必须在代码末尾添加此行 wm.render_in_browser()