Write a function
Write a Python function called tell_story that takes three arguments: hero and villain, representing the names of two characters, and repetition, representing the number of times to tell the story. The function should print out the following bedtime story:
“hero set out to slay the evil villain!
But he set his sword variable to global.
So villain accessed his sword and set it to None.
Use local variables next time, hero!”
Write the main function, and call the ‘tell_story’ with the following test case: tell_story(“CSc 110 student”, “Professor”, 2)