Does Python support interfaces like Java does?

Last updated 3 years ago | 1113 views 75     5

Tags:- Python

No. However, Abstract Base Classes (ABCs) are a feature from the abc module that let us declare what methods subclasses should implement. Python supports this module since version 2.7.