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

后端 未结 4 1909
萌比男神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:12

    How about this way? BTW: Fix your typo error while is not While in python.

    value = 0
    while True:
        old_value, value = value, way_to_new_value
        if value == old_value: break
    

提交回复
热议问题