Final Answer:
I have implemented the ASCII_shift() function according to the provided specifications. This function takes an original string and a step size as input, creating a new string by shifting each alphabetical character by the defined step size. The main() function uses ASCII_shift() to encrypt messages entered by the user, printing both the original and encrypted messages. The program continues to prompt the user for inputs until the user enters "QUIT."
Step-by-step explanation:
The ASCII_shift() function has been designed to handle the encryption process based on the Caesar cipher method. It follows the specified algorithm, iterating through the original string, shifting alphabetical characters by the given step size, and maintaining non-alphabetical characters unchanged. This ensures the accurate encryption of messages.
In the main() function, the user interacts with the program by inputting a message and a step size. The ASCII_shift() function is then called to encrypt the message, and both the original and encrypted messages are displayed. The program continues to prompt the user for inputs until the user enters "QUIT." This interactive design allows users to encrypt multiple messages with different step sizes.
By adhering to the provided instructions and incorporating user interaction, the program offers a practical and efficient way to utilize the Caesar cipher encryption method. Users can easily encrypt their messages while having the flexibility to input new messages until they decide to exit the program.