ai-content-maker/.venv/Lib/site-packages/pandas/tests/series/methods/test_pop.py

14 lines
295 B
Python
Raw Permalink Normal View History

2024-05-03 04:18:51 +03:00
from pandas import Series
import pandas._testing as tm
def test_pop():
# GH#6600
ser = Series([0, 4, 0], index=["A", "B", "C"], name=4)
result = ser.pop("B")
assert result == 4
expected = Series([0, 0], index=["A", "C"], name=4)
tm.assert_series_equal(ser, expected)