1 list
对于列表的简单增加就是append
example: a=[1,2,3]
a.append(4) ........................a=[1,2,3,4]
2 series
有两种方法,第一个是直接用索引增加值,第二个是对新元素生成series ,然后连接
第一种:
第二种方法
3.dataframe
用df.loc()的方法
4、np.array
对于array 并不像list那么简单可以用append,而需要用其他的函数
4.1 append 作用
4.2 先生成array ,然后再进行连接
网友评论