Any and all help will be greatly appreciated. I have no clue how to even begin with this code. Please help, thank you.
6.10 Ch 6 Program: Authoring assistant (Python 3) (1) Prompt the user to enter a string of their choosing. Store the text in a string. Output the string. (1 pt) Ex: Enter a sample text: we’1l continue our quest in space. there will be more shuttle flights and more shuttle crews and, yesi more volunteers, more civilians, more teachers in space. nothing ends here; our hopes and our journeys continue! You entered: we’1l continue our quest in space. there will be more shuttle flights and more shuttle crews and, yesi more volunteers, more civilians, more teachers in space. nothing ends here; our hopes and our journeys continue! (2) Implement a print menu function, which has a string as a parameter, outputs a menu of user options for analyzing/editing the string and returns the user’s entered menu option and the sample text string (which can be edited inside the print menu function). Each option is represented by a single character If an invalid character is entered, continue to prompt for a valid choice. Hint: Implement the Quit menu option before implementing other options. Call print menu0 in the main section of your code. Continue to call printmenu until the user enters q to Quit. (3 pts)