A simple Python script to analyze a list of email addresses by extracting usernames and domains, counting domain usage, and identifying users whose usernames start with a vowel.
- Extracts usernames and domains from email addresses
- Identifies unique email domains
- Counts how many emails belong to each domain
- Maps each email address to its domain
- Detects usernames that start with vowels (a, e, i, o, u)
- Clean and beginner-friendly code structure
emails = [
'ravi123@gmail.com',
'priya.kumar@yahoo.com',
'aman99@hotmail.com',
'sneha_p@outlook.com',
'amitverma@gmail.com',
'usha123@yahoo.com'
]