Pro
Pro
Task-01
Create a Python program that can encrypt and decrypt text using the Caesar Cipher algorithm.
Allow users to input a message and a shift value to perform encryption and decryption.
'''
#Encryption Function
def Encryption(message,shift):
result = ""
for i in range(len(message)):
char = message[i]
if char==" ":
result+=" "
elif (char.isupper()):
else:
return result
#Decryption Function
def Decryption(message,shift):
print("\n\n")