如何将元素附加到 Pandas 系列?
pythonpandasserver side programmingprogramming
在此程序中,我们将元素附加到 Pandas 系列。我们将使用 append() 函数完成此任务。请注意,我们只能将系列或系列列表/元组附加到现有系列。
算法
步骤 1:定义 Pandas 系列 s1。 步骤 2:定义另一个系列 s2。 步骤 3:将 s2 附加到 s1。 步骤 4:打印最终附加的系列。
示例代码
import pandas as pd s1 = pd.Series([10,20,30,40,50]) s2 = pd.Series([11,22,33,44,55]) print("S1:\n",s1) print("\nS2:\n",s2) appended_series = s1.append(s2) print("\n附加后的最终系列:\n",appended_series)
输出
S1: 0 10 1 20 2 30 3 40 4 50 dtype: int64 S2: 0 11 1 22 2 33 3 44 4 55 dtype: int64 附加后的最终系列: 0 10 1 20 2 30 3 40 4 50 0 11 1 22 2 33 3 44 4 55 dtype: int64