0
Is methods and modules is one and the same thing in python?
3 Respostas
+ 1
Functions associated with classes or instance of class are generally called methods. Modules are nothing but Python file which has classes and functions just like any other Python program. It might implement a certain functionality that you would like to carry to a different file by importing that module.
0
Okay 👍
Got it.Granger