I need to map country list in to floating number list.
country_list = ['China','India','Japan',...etc]
Mapping should be like following. (Just an example).
China 0.1
India 0.2
Japan 0.3
.... ...
.... 1.0
.... 1.1
.... ...
.... 2.0
What is the most quick way doing this with Python.
Related Questions : Python Map List of Strings to Integer List