Python世界地图
import pygal
# create a world map
worldmap = pygal.maps.world.World()
# set the title of the map
worldmap.title = 'Countries'
# adding the countries
worldmap.add('Random Data', {
'aq' : 10,
'cd' : 30,
'de' : 40,
'eg' : 50,
'ga' : 45,
'hk' : 2 ...