如果elif声明与&给出意想不到的输出

时间:2017-09-05 08:21:49

标签: python if-statement fizzbuzz

我正在努力学习python&在尝试在网站上解决此测验时,我得到一个奇怪的错误,即第二个参数的断言失败,而if ifif语句是正确的&应给出正确的输出(但它给出了错误的意外输出)

错误是:

"C:\Program Files\Python36\python.exe" C:/Users/.../PycharmProjects/pythonSnakegame/snakeGame.py
Fizz Buzz
Traceback (most recent call last):
Fizz Buzz
  File "C:/Users/..../PycharmProjects/pythonSnakegame/snakeGame.py", line 28, in <module>
    assert checkio(6) == "Fizz", "6 is divisible by 3"
AssertionError: 6 is divisible by 3

Process finished with exit code 1

def checkio(number):
    # Your code here
    # It's main function. Don't remove this function
    # It's using for auto-testing and must return a result for check.
    if number % 3 == 0 & number % 5 == 0:
        result = "Fizz Buzz"
    elif number % 3 == 0:
        result = "Fizz"
    elif number % 5 == 0:
        result = "Buzz"

    # replace this for solution
    print (result)
    return result
    # return str(number)


# Some hints:
# Convert a number in the string with str(n)

# These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
    assert checkio(15) == "Fizz Buzz", "15 is divisible by 3 and 5"
    assert checkio(6) == "Fizz", "6 is divisible by 3"
    assert checkio(5) == "Buzz", "5 is divisible by 5"
    assert checkio(7) == "7", "7 is not divisible by 3 or 5"
    print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")

感谢您的帮助

1 个答案:

答案 0 :(得分:5)

&运算符用于二进制操作,您应该使用and布尔运算符)。

  

我一直想知道为什么它不起作用

&正在禁用5的模块操作检查,所以基本上所有都可以被3 True整除,请检查此输出测试:

number = 12
number % 3 == 0 & number % 5 == 0
True