Advertisements
Advertisements
प्रश्न
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.
कोड लेखन
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?