Ceaser Cipher Text Project in Python | Urdu/Hindi

Subscribers:
182
Published on ● Video Link: https://www.youtube.com/watch?v=qVSQncFB0wI



Duration: 7:51
118 views
1


Ceaser Cipher Text Project in Python | Urdu/Hindi

Note : Recplace (greater than) and (less than) with their sign/symbol ( Because Youtube donot allow angle brackets in description ) OR You can get this code on github by using github link

Code github Link : https://github.com/ubaidahmadceh/python_projects/blob/main/Ceaser_Cipher_Text.py

code :

alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']

user_choice = input("Type 'encode' to encrypt, type 'decode' to decrypt:\n")
text = input("Type your message:\n").lower()
shift = int(input("Type the shift number:\n"))

def encrypt(text, shift):
encoded_text = ""
for letter in text:
position = alphabet.index(letter)
new_position = position + shift
new_letter = alphabet[new_position]
encoded_text += new_letter
print(f"The encoded text is {encoded_text}")

def decrypt(text, shift):
original_text = ""
for letter in text:
position = alphabet.index(letter)
new_position = position - shift
new_letter = alphabet[new_position]
original_text += new_letter
print(f"The encoded text is {original_text}")

if user_choice == "encode":
encrypt(text, shift)
elif user_choice == "decode":
decrypt(text, shift)
else:
print("Wrong entry")














easy caesar cipher in python,ceasor cipher using python,caesar cipher encryption and decryption,awesome python projects,python caesar cipher decrypt,encryption and decryption using python,cool python projects for beginners,cyber security python projects,caesar cipher,cyber security python libraries,cool python projects,encryption using python,python caesar cipher,i know python,python,cyber security,security,decryption,cipher,hashing,encryption




Other Videos By UBprogrammer - Hindi


2020-12-15How to uninstall or remove pakage of libraries from python
2020-12-15How to install pip package or libraries in python
2020-12-15email sender project in python
2020-12-15How to make text based adventure game in python gui with tkinter
2020-12-15secret auction project in python
2020-12-10Number Guessing Game Python gui in Hindi with While loop | Python Computer Guess My Number | 2021
2020-12-10Github gui Tutorial |Github Desktop Clone Repository |Commit and Push Repo To Remote in vscode |Urdu
2020-12-10Number Guessing Game Python | Python Random Number Guessing Game with source code | Hindi/Urdu 2020
2020-12-10Install django on Windows10 | How to Install django in Visual Studio code |How to run django project
2020-12-09Python Installation in windows10 in Hindi | Python Path Setup Windows10 | Setup Python in VS code
2020-12-09Ceaser Cipher Text Project in Python | Urdu/Hindi
2020-12-08Screenshot Taker project in Python For Beginners
2020-12-08Screenshot Taker Project GUI in python tkinter
2020-12-08How to build Hangman Game in Python in Hindi | Word Guessing Game Python | Hangman Game Python 2021
2020-12-07sigmoid function in computer vision and deep learning
2020-12-07perceptrone in hindi/urdu | deep learning
2020-12-07Dice Rolling Simulator in python | Python Projects Fpr Beginners | random module in python
2020-12-07Password Generator in python | Python Projects for beginners | python for cyber Security
2020-12-05Rock Papper Scissor Project in Python
2020-12-05Text Based Adventure Game Project in Python
2020-12-04Basic HTML and HTML5: Link to External Pages with Anchor Elements freecodecamp|html a tag href |urdu



Tags:
easy caesar cipher in python
ceasor cipher using python
caesar cipher encryption and decryption
awesome python projects
python caesar cipher decrypt
encryption and decryption using python
cool python projects for beginners
cyber security python projects
caesar cipher
cyber security python libraries
cool python projects
encryption using python
python caesar cipher
i know python
python
cyber security
security
decryption
cipher
hashing
encryption