0

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 Answers1

2

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:

https://docs.python.org/3/library/abc.html

crunker99
  • 371
  • 2
  • 7