DEV Community

Discussion on: Py in 5: Decorators

Collapse
 
tobiassn profile image
Tobias SN

I’d just like to note that in Python, modules aren’t the same as classes. You import a module, but you create an instance of a class.

Collapse
 
kaelscion profile image
kaelscion

Great point! This is an important distinction in the understanding the official use of these terms in Pythons context and what they actually mean vs how they can be used. It appears I have fallen prey to using the terms interchangeably. Thank you for pointing that out!