我有一个需要输入为 True/False 的函数,该函数将从另一个函数中输入。我想知道这样做的最佳做法是什么。这是我正在尝试的示例:
def feedBool(self, x):
x = a_function_assigns_values_of_x(x = x)
if x=="val1" or x == "val2" :
inp = True
else
inp = False
feedingBool(self, inp)
return
def feedingBool(self, inp) :
if inp :
do_something
else :
dont_do_something
return