Challenge: Implementing Caesar Cipher
Opgave
Swipe to start coding
Now, we will implement a simple function that provides data encryption using Caesar cipher.
Your task is to:
- Check if the character is alphabetic inside the
for
loop of thecaesar_cipher()
function. Use the.isalpha()
method to do it. - Set the value of the
key
variable equal to3
. - Call the
caesar_cipher()
and specify the required arguments (plaintext
andkey
).
Note
To provide decryption, we can use the same function but with other arguments:
caesar_cipher(encrypted_text, neg_key)
whereneg_key
=- key
.
Løsning
Var alt klart?
Tak for dine kommentarer!
Sektion 3. Kapitel 3
single
Spørg AI
Spørg AI
Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat
Awesome!
Completion rate improved to 5
Challenge: Implementing Caesar Cipher
Stryg for at vise menuen
Opgave
Swipe to start coding
Now, we will implement a simple function that provides data encryption using Caesar cipher.
Your task is to:
- Check if the character is alphabetic inside the
for
loop of thecaesar_cipher()
function. Use the.isalpha()
method to do it. - Set the value of the
key
variable equal to3
. - Call the
caesar_cipher()
and specify the required arguments (plaintext
andkey
).
Note
To provide decryption, we can use the same function but with other arguments:
caesar_cipher(encrypted_text, neg_key)
whereneg_key
=- key
.
Løsning
Var alt klart?
Tak for dine kommentarer!
Awesome!
Completion rate improved to 5Sektion 3. Kapitel 3
single