简体   繁体   中英

Creating new instance objects

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?

You create instances like this:

import MyMod
obj = MyMod.MyClass(param1, param2)

This is the canonical way to instantiate Python objects.

That's fine. Alternatively you can do:

from Class import Class
Class(variables, here)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM