this is my first Git Repository Email validation in python
📖 Description
This project validates email addresses in Python without using regular expressions. It uses string rules and conditions to check if an email address follows basic formatting rules like:
Starts with a letter
Contains exactly one @
Has a valid domain with at least one .
No spaces or invalid characters
🚀 Features
Validates emails with custom logic (no regex)
Ensures correct length and starting character
Checks for proper placement of @ and .
Detects spaces and invalid characters
Lightweight and easy to extend
🛠️ Tech Stack
Python 3.x