我不相信我把它設置正確......因爲不管我爲foo()填寫什麼數字,它似乎總是返回「True」。我究竟做錯了什麼??Python Return True或False
# Complete the following function.
# Returns True if x * y/z is odd, False otherwise.
def foo(x, y, z):
answer = True
product = (x * y)/z
if (product%2) == 0:
answer = False
return answer
print(foo(1,2,3))
讓我問你,你會輸入什麼來返回假 – 2014-12-06 08:55:07
是的,它在我的實際程序中是正確的,但我沒有在這裏設置正確的發佈。 – 2014-12-06 08:55:45
[嗯,它工作正常](http://labs.codecademy.com/CdIh#:workspace) – 2014-12-06 08:57:30