我在下面创建了这个while循环,但是当它应该打印两次时,它只会打印一次“嘿”,请帮助:
count = 6
item = 3
while count - item > 0:
print count
count -= item
if count == 0:
print "hey"
在开始时,计数为6,然后为3,但永远不会为0
守着一只汪
UYOU
相关分类