how would I keep track of count for each time a command exectuted? for example...
subprocess.Popen("command") && add 1 to count. If count equals n number, do
something.
I have tried count = 0 count += 1, but count does not seem to be
incrementing.
Thanks
_______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor
