Computer Science, asked by shanusaini1032, 13 days ago

Which of the following statement/s will delete last row?
i. del std[‘Ramesh ’] ii. std.pop (‘Ramesh ’)
iii. std.drop (‘Ramesh ’, inplace=True) iv. pop std [‘Ramesh ’]

Answers

Answered by saransrini03
0

ii. std.pop('ramesh')

because pop always remove last one

Similar questions