I have a dataframe in python, want to replace Fri as this friday and the rest of the rows in that colume as NULL

Use this code will replace all the rows with this friday, which is not what i want
import datetime
today = datetime.date.today()
friday = today + datetime.timedelta( (4-today.weekday()) % 7 )
this_firday = friday.strftime('%Y-%m-%d')
df['date3'] = df.loc[(df['date'] == 'Fri'), 'date'] = this_firday
df
my expected result is
