Check if a value still remains the same in a While loop Python

后端 未结 4 1839
萌比男神i
萌比男神i 2021-01-27 01:23

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

4条回答
  •  广开言路
    2021-01-27 02:04

    previous = None
    current = object()
    while previous != current:
        previous = current
        current = ...
    

提交回复
热议问题