Coding Homework: I used def to define a function called redact. I made it take two arguments: text and secret. Now, inside my function, I have to use replace on text and replace secret with '#'.

However, I don't know how to write it out.

def redact(text,secret):
.......................................