0
Why does not this code work? (Python)
This is a task named Skee-Ball (easy) in Code Coach and the test case #3 does not work. The code: points_i_have = int(input()) tickets_for_the_squirt_gun = int(input()) tickets_i_have = points_i_have // 12 result = tickets_i_have / tickets_for_the_squirt_gun if result >= 1: print("Buy it!") else: print("Try again")
2 Answers
+ 1
Thank you!