from sample import fun1 fun1()
from sample import fun1, fun3 fun1(10, 2) fun3()
from sample import employee,fun1,a,b f1=fun1() e1=employee() e1.companydetails() e1.assaign() e1.assaign(((input("enter idno:"))),input("enter employee name:,"),input("enter employee cnu:")) e1.emp_display() print(a) print(b)
import sample as sp sp.fun1(10,8) sp.fun2() sp.fun3()
import sample as smp smp.fun1(1, 2)