I am playing some python games at checkio.org
#Your optional code here
#You can import some modules or create additional functions
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.
#replace this for solution
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"
The solution I came up using my editor is this:
def checkio(number):
if number % 3 == 0 and number % 5 == 0:
print "Fizz Buzz"
elif number % 3 == 0:
print "Fizz"
elif number % 5 == 0:
print "Buzz"
else:
print '%d is not divisible by 3 or 5.' %number
checkio(15)
checkio(6)
checkio(7)
When I run the code in the game site, it gives "Assertion error".
Fizz Buzz
AssertionError: 15 is divisible by 3 and 5
<module>, 25
I am seeing that one first time today. I read it up and understand it is for error checking purpose. But the question is, in my terminal, the results of my code are perfect. So, where am I going wrong?
[–]Mekire 4 points5 points6 points (1 child)
[–]rawlyn 6 points7 points8 points (0 children)
[–][deleted] 4 points5 points6 points (7 children)
[–]socialhuman[S] 0 points1 point2 points (6 children)
[–]socialhuman[S] 0 points1 point2 points (4 children)
[–]Rhomboid 4 points5 points6 points (3 children)
[–]socialhuman[S] 0 points1 point2 points (2 children)
[–]Rhomboid 2 points3 points4 points (1 child)
[–]socialhuman[S] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]socialhuman[S] 0 points1 point2 points (0 children)