Advertisements
Advertisements
प्रश्न
Find the output of the following Python code:
import pandas as pd
com=pd.Series([45, 12, 15, 200], index = ['mouse', 'printer', 'webcam', 'keyboard'])
print (com[1:3])
लघु उत्तरीय
उत्तर
The output of the provided Python code would be:
printer 12
webcam 15
dtype: int64
Explanation:
The statement print (com [1:3)) chooses elements with the index labels "printer" and "webcam." This slicer slices the Series from index position 1 (inclusive) to index position 3 (exclusive). The output shows these chosen items and their matching values.
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?