import class function python code example

Example 1: how to import your own function python

#For one particular fuction,
from fileName import function1()
fileName.function1()
#For multiple functions,
from fileName import function1(), function2()
fileName.function1()
fileName.function2()
#For all functions (or to remove the "fileName." prfix),
from fileName import *
function1()
function2()
function3()
#(You don't need to call all of them, I'm just demonstrating)

Example 2: module import class python

class myClass:
	def __init__(self,val):
		self.val=val
	def getVal(self):
		return self.val