gpt4 book ai didi

python - 检查一个值在 While 循环 Python 中是否仍然保持不变

转载 作者:太空宇宙 更新时间:2023-11-04 08:53:08 24 4
gpt4 key购买 nike

我想知道是否有一种优雅的方法来查看是否可以检查在 while 循环中不断变化的值,并在值停止变化并保持不变时停止 while 循环。

例如:

Value = 0
while True:
value changes everytime
(if value still the same break)

最佳答案

这样怎么样?顺便说一句:修复你的拼写错误 while 在 python 中不是 While

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

关于python - 检查一个值在 While 循环 Python 中是否仍然保持不变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33145872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com