Linked Questions

0 votes
1 answer
459 views

I understand what abstraction is, however, I do not how we would implement abstraction in python. When searching, all I was able to find are abstract classes which I do not see relating to abstraction ...
DMKC. gamer's user avatar
0 votes
1 answer
397 views

recently i needed to implement some data structures that could tell if they have been modified since a given point in time. Currently i have a ChangeDetectable class that implements the check but the ...
Giorgio Ciotti's user avatar
0 votes
0 answers
28 views

For example, this abstract class: from abc import ABC, abstractmethod class Polygon(ABC): # abstract method def noofsides(self): print("something") class Triangle(Polygon): ...
user12988928's user avatar

15 30 50 per page
1
2