I want to give each employee I create in the Employee class an ID but automatically
Here is the code:
class employees :
def __init__(self,first,last,pay):
self.first_name = first
self.last_name = last
self.pay = pay
self.email = first + '.' + last + '@company.com'
self.full_name = first + ' '+last
self.facebook_link = 'FB.com/'+ self.full_name