LLD - Design — Chess Game
What will be the output of this code?
class Piece:
def move(self):
return "Any move"
class Bishop(Piece):
pass
b = Bishop()
print(b.move())