Does Python support interfaces like Java does?
Last updated 3 years, 10 months ago | 1385 views 75 5
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.