如果使用for循环的话,要用zip对多变量的循环范围进行封装,否则会报错:too many values to unpack (expected 2);正确示例如下:
for i, j in zip(range(5), range(6)): print("test")
如果使用while循环,直接用and or等逻辑运算符将循环变量的条件连接即可,示例如下:
i, j = 0, 0 while (i < 5) and (j < 6) : i += 1 j += 1 print("test")