Creating an Instance of a Class in Python

How can you create an instance of the pet class in Python?

Which line of code will correctly create an instance of the pet class as defined below?

class pet:
def __init__(self,strSpecies,strName):
self.species = strSpecies
self.petName = strName

A) myPetA = pet('dog', 'Spot')

B) myPetA = pet(self, 'dog', 'Spot')

C) myPetA = new pet('dog', 'Spot')

D) myPetA .pet() = 'dog', 'Spot'

Answer:

myPetA = pet(self, 'dog', 'Spot')

The correct line of code that will create an instance of the pet class is myPetA = pet(self, 'dog', 'Spot'). Option B is correct.

← Allowing all users to execute application with sysadmin group permissions Find product category for order 5019 1 in excel workbook →