GiovanniBruno22 / PythonBeginners

This repository is meant for new developers to submit first pull requests to and get reviews from peers.
17 stars 22 forks source link

Caesar Cipher #17

Closed GiovanniBruno22 closed 1 year ago

GiovanniBruno22 commented 1 year ago

Create a python script that "encrypts" a message using Caesar Cipher, using the following alphabet:

Plain A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Cipher X Y Z A B C D E F G H I J K L M N O P Q R S T U V W

For example,

Input: "Hello, World" Output: "Ebiil Tloia"

You can read more: https://en.wikipedia.org/wiki/Caesar_cipher

Optional: Make a decrypt function that does the opposite!