Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
8096 Prikazi

e.g.


computation.py

------------------------

class A(object):

def hell(self, number)

{

----

}



b = A()




-----------------------------


sale module

sale.py


class sale_order(models.Model):

def abc(self):

# Here i wants to use that method hello() How can i use it?

Avatar
Opusti
Best Answer

Hi Irfankhan,

You can put computation.py file in the same folder in which sale.py file is placed and You can do following code in the sale.py.

from . import computation

and you can make object of class A in the following way:

b = computation.A()

and you can call method as follow:

b.hell(13)

Regards,

Hardik

Avatar
Opusti
Best Answer

You have to import hello()

from computation import hello

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
jul. 25
451
1
jun. 25
1064
0
maj 25
1181
2
apr. 25
3177
1
feb. 25
1386