Given the following code:class Employee: def __init__ ( self…
Given the following code:class Employee: def __init__ ( self, name, position = “Intern” ): self.name = name self.position = positionemployee1 = Employee ( “John”, “Manager” )print ( employee1.position )What output is printed to the screen?
Read Details