If you can call/execute external programs, then you can put each routine in a function in a separate file with the appropriate return value. Otherwise, you could do something like the following to eliminate the else statements, and hopefully the program is not large.
a = 1
if a > 0 : print "a is positive"
if a <= 0: print "a is not positive"
test_a = False
b = 0
if a > 0 and b > 0: test_a = True
if test_a: print "condition is True"
if not test_a: print "condition is False"