在C/C++中,在Python中可以在单个for循环中运行多个计数器吗?
我想要的东西 - for i,j in x,range(0,len(x)):我知道Python解释的方式不同以及为什么,但我如何在单个for循环中同时运行两个循环计数器?
for i,j in x,range(0,len(x)):
python for-loop
for-loop ×1
python ×1