python: Complete the rotate function, which takes two arguments: a string of characters and a non-zero integer value. The function returns (does not print)

profileadelen
 (Not rated)
 (Not rated)
Chat

  Part I: String Rotation (10  points) (Place your answer to this problem in the rotate py" file)  Complete the rotate function, which takes two arguments: a string of  characters and a non-zero integer value. The function returns (does not  print) a new string that corresponds to the original string, except that  each character has rotated by the specified number of positions,  "wrapping around" as necessary. A positive rotation amount moves  characters to the right, a negative rotation amount moves characters to  the left instead. The absolute valuc/magnitude of the rotation amount  may be greater than the length of the string: if it is, then the  rotation continues multiple times until each character has beer moved  the specified number of times. For example,consider the string  helloworld. If we rotate the characters of this string 3 positions to  the right,the result will be rldhellowo as the following steps are  performed: 1. The final'd' is removed from the right and added to the  beginning of the string, giving us dhe1loworl 2. The new final character  (T is removed from the right and added to the beginning (left side) of  the string to get ldhellowor 3. The new final character ('r') is removed  from the right and moved to the left to get ridhelloo Your code does  not need to use this exact algorithm, as long as it produces the proper  final result. Examples: Function Call Return Value (a string) rotate  (helloworld, 3) ldhe Low rotate (cryptographyraphycrypt.o semou   

    • 7 years ago
    python file attached
    NOT RATED

    Purchase the answer to view it

    blurred-text
    • attachment
      rotate.py