I want know if there is a elegant method for looking if a value that continually changes in a while loop can be checked and stop the while loop if the value stops change and rem
previous = None current = object() while previous != current: previous = current current = ...