Create the instance properties 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.emp1 = Employee("John", "Smith")
emp1.fullname ➞ "John Smith"
emp2 = Employee("Mary", "Sue")
emp2.email ➞ "[email protected]"
emp3 = Employee("Antony", "Walker")
emp3.firstname ➞ "Antony"
firstname and lastname are already made for you.