Question Answered step-by-step Write a function that takes in a string and rotates is such that it moves each character one space to the right, with the last character moving to the beginning. Return the rotated string. See more details in the picture below:The function will be named as rot(s ) It ” rotates” the string, so that abcde ” ( S ) eabcd (returned value ” The function does not have input and print. Write a test program, asking the string, andprint the result. After testing, comment out the test program, only keep the function definition,… Show moreComputer Science Engineering & Technology Python Programming COMP CS 1101