Advertisements
Advertisements
Question
Write a Python program to create a series object, country
using a list that stores the capital of each country.
Note: Assume four countries to be used as index of the series object are India, UK, Denmark, and Thailand having their capitals as New Delhi, London, Copenhagen, and Bangkok respectively.
Code Writing
Solution
Import pandas as pd
Capital = ['New Delhi', 'London', 'Copenhagen',
Bangkok']
ctry = ['India', 'UK', 'Denmark', 'Bangkok']
Country = pd.Series(capital, index=ctry)
Print(country)
shaalaa.com
Is there an error in this question or solution?