Putting an if-elif-else statement on one line? did not give me enough information figure out my problem. I want to turn
if pointer == 0:
    quit(print("ERROR:POINTER VALUE < 0"))
else:
    pointer -=1
into a one line if statement so I can put it in an exec() statement. Please elaborate on the info provided in the linked question
 
     
    