मराठी

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]) - Informatics Practices

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2023-2024 (February) Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×