DAY 11 — 60 DAY PYTHON CHALLENGE
💻 Caesar Cipher
Python में Caesar Cipher — Secret Message बनाएं
Advertisement
Project kya hai?
Day 11 ka project hai Caesar Cipher!
Neeche complete code hai — copy karo aur chalao!
Complete Python Code
python — caesar.py
def caesar_cipher(text, shift, mode="encrypt"):
if mode == "decrypt":
shift = -shift
result = ""
for char in text:
if char.isalpha():
base = ord('A') if char.isupper() else ord('a')
result += chr((ord(char) - base + shift) % 26 + base)
else:
result += char
return result
print("=== Caesar Cipher ===")
print("Secret messages banao!
")
while True:
print("1. Encrypt (message chhupao)")
print("2. Decrypt (message padho)")
print("3. Brute Force (sabhi shifts try karo)")
print("4. Baahar jao")
ch = input("Choice: ")
if ch == "1":
msg = input("Message: ")
shift = int(input("Shift (1-25): "))
enc = caesar_cipher(msg, shift, "encrypt")
print(f"Encrypted: {enc}")
elif ch == "2":
msg = input("Encrypted message: ")
shift = int(input("Shift used: "))
dec = caesar_cipher(msg, shift, "decrypt")
print(f"Decrypted: {dec}")
elif ch == "3":
msg = input("Encrypted message: ")
print("
Sabhi possibilities:")
for s in range(1, 26):
print(f" Shift {s:2}: {caesar_cipher(msg, s, 'decrypt')}")
elif ch == "4":
break
OUTPUT
Message: Hello Python Shift: 3 Encrypted: Khoor Sbwkrq Encrypted: Khoor Sbwkrq Shift: 3 Decrypted: Hello Python
Code kaise kaam karta hai?
Har letter ko shift se aage ya peeche karte hain. % 26 se A-Z mein wrap hota hai. Brute force se bina shift jaane bhi decrypt kar sakte hain!
Advertisement
📋 Project ka Introduction
Caesar Cipher Python ka Day 11 ka project hai. Is project mein aap Python ke important concepts practice karenge jo real-world applications mein bahut use hote hain.
Yeh project beginners ke liye design kiya gaya hai lekin kaafi concepts cover karta hai. Step by step samjho, code chalao, aur khud modify karke practice karo.
Is tarah ke projects banane se aapka Python confidence badh jaata hai aur aap asli problems solve karna seekh jaate hain. Chaliye code samjhte hain!
Yeh project beginners ke liye design kiya gaya hai lekin kaafi concepts cover karta hai. Step by step samjho, code chalao, aur khud modify karke practice karo.
Is tarah ke projects banane se aapka Python confidence badh jaata hai aur aap asli problems solve karna seekh jaate hain. Chaliye code samjhte hain!
🧠 Is Project mein kya seekhoge?
Yeh project banate waqt aap ye Python concepts use karoge:
| Concept | Kya karta hai |
|---|---|
Variables | Data store karna |
Functions | Reusable code blocks |
Loops | Repeat karna |
Conditions | Decisions lena |
Input/Output | User se interact karna |
📝 Code kaise kaam karta hai — Step by Step
Neeche code ki poori logic step-by-step samjhayi gayi hai:
- Problem samjho: Caesar Cipher mein kya karna hai
- Required variables aur data structures decide karo
- Logic step-by-step likhó
- Code mein implement karo
- Test karo aur bugs fix karo
⚠️ Common Mistakes — Bhool mat jaana!
Beginners yeh galtiyan aksar karte hain — dhyan rakho:
- ⚠️ Indentation sahi rakho — Python mein spaces matter karti hain
- ⚠️ Variables ko use se pehle define karo
- ⚠️ Input ko int()/float() mein convert karo agar number chahiye
- ⚠️ Edge cases handle karo — kya hoga agar user galat input de?
🏋️ Practice Exercises — Aage badho!
Yeh project complete karne ke baad in exercises se practice karo:
- 💡 Caesar Cipher mein naya feature add karo
- 💡 Code ko functions mein refactor karo
- 💡 Error handling improve karo
- 💡 File mein data save karo
❓ Aksar Pooche Jane Wale Sawal (FAQ)
Q: Caesar Cipher project kyon banana chahiye?
A: Har project ek naya concept sikhata hai. Practice se hi Python fluent aati hai.
A: Har project ek naya concept sikhata hai. Practice se hi Python fluent aati hai.
Q: Code run nahi ho raha?
A: Indentation check karo, syntax errors dekho, variables define hain ya nahi check karo.
A: Indentation check karo, syntax errors dekho, variables define hain ya nahi check karo.
Q: Kaise improve karein?
A: Pehle basic version complete karo, phir ek ek feature add karte jao.
A: Pehle basic version complete karo, phir ek ek feature add karte jao.