I'm not sure that I've gotten this right. I'm working on learning Python and I'm wondering how exactly you call the constructor of a class. Currently the class is in it's own module that is imported in the main file. Is it right to go
Class.Class(variables, here)
Or is there some easier way to go about this?
from module import Class, the Python would be identical.