#write a program in python to declare that The coding is fun, then replace the word 'fun' with  the 'awesome' and then remove the word ' The' :

phrase  = "The coding is fun"

phrase  = phrase.replace('fun','awesome')

phrase.strip('The')