[text] reversetext Instructions Define a function called reverse that takes a string text and returns that string in reverse. For example reverseabcd should return dcb 01. You may not use reversed or 1 to help you with this. 02. You may get a string containing special characters for example or
in Programming