Computer Science, asked by oscaraminettevlog, 8 hours ago

Answer this question plz.​

Attachments:

Answers

Answered by Anonymous
0

Answer:

a.

import pandas as pd

s13 [0] = 7600              #to modify section 'XIA' s amount.

s13 [2: ] = 7000            #to modify sections 'XIC' and 'XID' s amount.

print("Series object after modifying amounts: ")

print(s13)

Explanation:

Output

Series object after modifying amounts:

XIA 7600

XIB 7800

XIC 7000

XID 7000

XIE 6890

XIF 7000

Similar questions