Python - Object-Oriented Programming Foundations
How can you modify this
Employee class to automatically assign a unique ID to each new employee?class Employee:
def __init__(self, name):
self.name = name