gpt4 book ai didi

c++ - C++转Python(For循环多重赋值)

转载 作者:太空狗 更新时间:2023-10-29 23:21:59 25 4
gpt4 key购买 nike

转换为 python:

#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
for (int i = 0, j = i + 3; i < 100; ++i, j= i+3)
cout << i << " j: " << j << endl;

getchar();
return 0;
}

我尝试:

for i in range(99):
j = i + 3
print i, " j: ", j

如何让它成为一个for循环?

最佳答案

只要把99改成100

for i in range(100):
j = i + 3
print i, " j: ", j

或者

for i,j in [(i, i+3) for i in range(100)]:

关于c++ - C++转Python(For循环多重赋值),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2160616/

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