Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 570 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 570 Bytes

Python Projects: Secret Message 🐍

Python Script
This repo contains python code that uses an encryption program to send and receive secret messages with a friend
Run the code.

Python

alphabet = 'abcdefghijklmnopqrstuvwxyz'
key = 3
newMessage = ' '

message = input('Please enter a message: ')


for character in message:
    position = alphabet.find(character)
    newPosition = (position + key) % 26
    newCharacter = alphabet[newPosition]
    newMessage += newCharacter
    

print(newMessage)

Output

phhwcphcqhducwkhcsdun