我有一個函數,需要輸入作爲True/False,將從另一個函數提供。我想知道做這件事的最佳做法是什麼。這是我想的例子:作爲函數中的參數Python布爾作爲
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
你不應該需要'bool'有 – Andbdrew
無需轉換爲'bool' – jamylak
我只是擺明... – dawg