This is a simple short class to encrypt and decrypt words using the Caesar cipher technique.
This class was created as a part of the "100+ Exercises - Advanced Python Programming" course by Paweł Krychowiak on the UDEMY website. I did it mainly to practise putting code on GitHub, commiting and writing 'README' file.
- Clone the repository
git clone https://github.com/olczi095/caesar-cipher.git
- Change the directory
cd caesar-cipher
- Run the program
python caesar-cipher.py
User can choose the alphabet and the shift for program and then:
- the word can be encrypted
- the word can be decrypted
Python 3.10.7