You can clone with HTTPS or SSH.
def test_cases(): darts(0) darts(1) darts(3) darts(-1) darts(15) darts(16) def darts(x): C = 0 if x-C>=0 and x-C<=10 and x-C==0: print 'Bullseye! 10 points!' elif x-C>0 and x-C<=10: print '%d points!' % (10-x) elif x-C>15: print 'You hit the bartender. Get out!' exit() else: print 'Miss!' if __name__ == '__main__': test_cases()