Skip to content

natnew/Python-Projects-Secret-Message

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 

Repository files navigation

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

About

Python Projects Secret Message

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages