関数があるとします
def equals_to(x,y):
a + b = c
def some_function(something):
for i in something:
...
このようなパラメータとしてc
計算された使用方法はありますかequals_to
some_function
equals_to(1,2)
some_function(c)
return
関数からの値にする必要がありc
ます。
def equals_to(x,y):
c = x + y # c = x + y not a + b = c
return c # return the value of c
def some_function(something):
for i in something:
...
return
sum = equals_to(1,2) # set sum to the return value from the function
some_function(sum) # pass sum to some_function
また、の関数シグネチャはequals_to
引数を取りますx,y
が、使用する関数でa,b
割り当てが間違った方法でc
行われた場合、の値は等しくありx + y
ません。a + b
c
強くお勧めします:http://docs.python.org/2/tutorial/