I have very basic question. For some reason I'm not able to recall how to do it. How to access the variables defined in the function which is not declared in class. How to access y variable ? And how to pass the value for lambda ? And how to get back the value of c defined inside lambda ?
def fun ():
y = 100
x = lambda c,s,y : c*s*y
Also how to pass the values to lambda from function ?