I wrote a simple program but it shows me an error:
#the program:
# Python classes
class Employee:
raise_amount=1. 04
def __int__(self, first, last, pay):
self.__first = first
self.__last= last
self.__pay= pay
self.__email= first+ "." + last + "@company.c om"
def fullname(self):...