ORIGINAL:
I'm trying to have a while loop that checks two conditions and stops if one condition is met. My exact needs are something that goes like this
while integer1 AND integer2 > 0:
# perform calculation and print results at each instance of the loop
REPHRASING: I need to make a loop that runs until one of two numbers becomes zero, and each of those numbers will change during each iteration of the loop.
Sorry if my original phrasing was confusing, hope this makes more sense.
or- not anand