Day 4: cipher wrap around
Today, I started to implement the Caesar Cipher.
The first part was to create a function called 'encrypt' that takes the 'text' and 'shifts' the input text.
def encrypt(text, shift):
The actual shift can be accomplished with an array new_text holding...
allienicole.hashnode.dev1 min read