Skip to content

Commit 46f28d5

Browse files
authored
Update caesar_cipher.py
Removed the banner
1 parent ad79ee2 commit 46f28d5

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

ciphers/caesar_cipher.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
from string import ascii_letters
33
import os
44

5-
def show_banner(text="CaesarCipher", font="block"):
6-
f = Figlet(font=font)
7-
print(f.renderText(text))
8-
95
def encrypt(input_string: str, key: int, alphabet: str | None = None) -> str:
106
"""
117
encrypt

0 commit comments

Comments
 (0)