This is a simple Python program that checks if you are eligible to vote based on your age. 🎉
- Takes your age as input. 👤
- Checks if you are eligible to vote. ✅
- Prints a friendly message with emojis 🎈 to make it more fun.
- Simple, beginner-friendly Python code. 🐍
👨💻 Author
Name: Ravi Raj
Email: 📧 ravi_249026@saitm.ac.in
LinkedIn: 🔗 in/ravi-raj-915077342
GitHub: 🐱 https://github.com/Ravi-GitLab-7
num = int(input("Enter your Age: "))
if num >= 18:
print("🎉 You are eligible for voting! 🗳️")
else:
print("🚫 You are not eligible for voting yet. ⏳")