If you want to append a series of values [1,2] to the column of dataframe df, you will get NaNs:
import pandas as pd
series=pd.Series([1,2])
df=pd.DataFrame(index=[3,4])
df['col']=series
df
col
3 NaN
4 NaN
because setting a new column automatically aligns the data by the inde...