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 at all.
1 Answer 1
In Python, abstraction really only exists for design/conceptual purposes, not like in other languages like Java or C++.
Maybe you already saw abc module:
Sign up to request clarification or add additional context in comments.
Comments
Explore related questions
See similar questions with these tags.
lang-py
abstractfor this but Python doesn't have keywordabstractand probably nobody bother this.