gpt4 book ai didi

python - (Python) 直到 a == b

转载 作者:太空宇宙 更新时间:2023-11-04 07:22:41 25 4
gpt4 key购买 nike

当然有办法,但我不知道。谁能启发我如何一遍又一遍地运行某一行代码,直到一个变量等于另一个变量。基本上,我正在编写一个简单的程序,它随机生成两个数字,并且在两个数字彼此相等之前不会停止。我知道,这只是一个简单的、毫无意义的程序,但了解这一点将有助于我进一步编程。

谢谢!

最佳答案

这是一种方式

n1 = 0
n2 = 1
while n1 != n2:
n1 = my_random_function()
n2 = my_random_function()

while True:
a = random_function()
b = random_function()
if a == b:
break

关于python - (Python) 直到 a == b,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13813537/

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