Tell us what’s happening:
what’s wrong with this…
I’m trying but I can’t find the answer
Your code so far
# User Editable Region
def caesar():
alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
shifted_alphabet = alphabet[shift:] + alphabet[:shift]
translation_table = str.maketrans(alphabet, shifted_alphabet)
text = 'hello world'
encrypted_text = text.translate(translation_table)
print(encrypted_text)
def sum(text, shift):
print(text+shift)
# User Editable Region
Your browser information:
Lo user agent è: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.1 Safari/605.1.15
Challenge Information:
Build a Caesar Cipher - Step 11