df['PREV_CLOSE']=df['Close'].shift(1)
df
import pandas as pd
info= pd.DataFrame({'a_data': [45, 28, 39, 32, 18],
'b_data': [26, 38, 41, 35, 45],
'c_data': [22, 19, 11, 25, 16]})
#shifting code
info.shift(periods=2)
info.shift(periods=2,axis=1,fill_value= 70)