gpt4 book ai didi

python - 将 for 循环从 c 转换为 python

转载 作者:行者123 更新时间:2023-11-30 18:59:42 34 4
gpt4 key购买 nike

我正在将一些 C 代码转换为 Python。有人可以将这个 for 循环从 C 编程语言转换为具有变量名称和所有内容的等效 Python 吗?

 int i, j, c = 0;
int n = SOME CONSTANT, not less than 2, like 3 4 5 6..
for (i = 0, j = n-1; i < n; j = i++){

}

我认为对于 for 循环这是不可能的。也许是这样的:

j = n - 1
i = 0
while True:
do stuff

if i < n:
break
i = i + 1
j = i

非常难看,如果有人有更好的解决方案请分享

最佳答案

关于python - 将 for 循环从 c 转换为 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8951014/

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