Create the instance attributes fullname and email in the Employee class. Given a person's first and last names:
fullname by simply joining the first and last name together, separated by a space.email by joining the first and last name together with a . in between, and follow it with @company.com at the end. Make sure the entire email is in lowercase.emp_1 = Employee("John", "Smith")
emp_2 = Employee("Mary", "Sue")
emp_3 = Employee("Antony", "Walker")
emp_1.fullname ➞ "John Smith"
emp_2.email ➞ "[email protected]"
emp_3.firstname ➞ "Antony"
firstname and lastname are already made for you.