Question
two lists where names represent a list of employees at Elite Tech and years represent their year of admittance to the company, write Python code
two lists where names represent a list of employees at Elite Tech and years represent their year of admittance to the company, write Python code to generate their email addresses. An email address ends with the suffix "@my.eyt.tec". It is generated as first initial + last name + admittance year + suffix. tabulate the output as employee name and email address. Notice that the email addresses consist of lowercase letters.
names = ["Willena Shupe", "Jolanda Agin", "Leta Stacker", "Leonora Oliverio", "Birgit Stoudt", "Aron Valtierra", "Vi Buschman", "Janee Barnwell", "Agnus Flower", "Byron Mccartney", "Victoria Crabill", "Amy Swinton", "Arla Mohamed", "Bryon Vester", "Lue Benway", "Mozelle Macauley", "Suzann Galindo", "Delicia Barriere", "Marcella Uyehara", "Jane Curley" ] years = [2020, 2019, 2016, 2019, 2013, 2014, 2014, 2018, 2016, 2012, 2014, 2015, 2018, 2013, 2019, 2017, 2019, 2020, 2015, 2013]
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started