I ran the following code. I wanted to know what’s the mistake?
Compiling the code gives us an invalid syntax error (referring to Dog? ) Can you explain me why?
class Dog():
def init(self,breed):
“”“It is a kutta”""
print(breed)
d1=Dog(“GS”)
print(Dog?)