DAY 34 — 60 DAY PYTHON CHALLENGE
Voting System
Python mein Voting System banao — Hindi mein step by step
Advertisement
Project kya hai?
Day 34 ka project hai Voting System!
Yeh project banane se aap Python ke important concepts
practice kar payenge. Neeche complete code hai — copy karo aur chalao!
Complete Python Code
python — vote.py
candidates = {}
voters = set()
print("=== Voting System ===")
n = int(input("Kitne candidates hain: "))
for i in range(n):
name = input(f"Candidate {i+1} naam: ")
candidates[name] = 0
print("\nVoting shuru! 'done' likhne par khatam hoga.")
while True:
voter_id = input("\nVoter ID: ")
if voter_id.lower() == "done":
break
if voter_id in voters:
print("Aap pehle vote kar chuke hain!")
continue
print("Candidates:", list(candidates.keys()))
vote = input("Kisko vote dena hai: ")
if vote in candidates:
candidates[vote] += 1
voters.add(voter_id)
print("Vote record ho gaya!")
else:
print("Invalid candidate naam!")
print("\n=== Results ===")
for candidate, votes in candidates.items():
bar = "#" * votes
print(f" {candidate:15} {bar} ({votes} votes)")
if candidates:
winner = max(candidates, key=candidates.get)
print(f"\nWinner: {winner}! ({candidates[winner]} votes)")
OUTPUT
Kitne candidates: 3 Candidate 1: Ram Candidate 2: Shyam Candidate 3: Geeta Voter ID: V001 Kisko vote: Ram Vote record ho gaya! === Results === Ram ### (3 votes) Shyam # (1 votes) Winner: Ram! (3 votes)
Code kaise kaam karta hai?
Set se duplicate votes rokti hain — ek voter sirf ek baar vote de sakta hai. max(key=dict.get) se sabse zyada votes wala winner milta hai.
Advertisement
📋 Project ka Introduction
Voting System Python ka Day 34 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: Voting System 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:
- 💡 Voting System 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: Voting System 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.