Computer Science, asked by nagaphani774, 8 months ago

declare a class named Dog and implement a function inside bark(). the function will print "woof woof" when its called. (in python)​

Answers

Answered by harryjohn010609
0

Answer:

marshal

Explanation:

Answered by mukherjeen14
2

Answer:

class Dog:

   def bark(sound):

       print("woof woof")

Explanation:

Similar questions