"代码块组建里 while 搭配 continue 不能使用,直接用会报错:SyntaxError: ‘continue’ not properly in loop 运行异常!! 但是在 pycharm 里可以用,请问:如何在 ISRPA 里 ...."
代码块组建里 while 搭配 continue 不能使用,直接用会报错:SyntaxError: ‘continue’ not properly in loop运行异常!!
但是在 pycharm 里可以用,请问:如何在 ISRPA 里使用 while 搭配 continue? 如果没有,是不是 2.1 版可以新增功能? !!!
rpa 自带的 while 循环组件,在后续增加代码块,写 continue 是行不通的。而自己定义代码块,包含 while+continue 是可以。而 while 循环组件再搭配代码块的 continue 目前是不支持的。
现在我也不清楚 while 函数 有没有问题···········但无论什么时候,都不推荐 tab 和 4 个空格 混用。
if not excel_list.iloc[begin_length,][1:] or excel_list.iloc[begin_length,][1:].shape[0] != 7:
begin_length += 1 continue
这里的不能用,while a < 3:
if a == 1: a += 1 print(123) continue
而这里的可以用,很不理解
rpa 自带的 while 循环组件,在后续增加代码块,写 continue 是行不通的。而自己定义代码块,包含 while+continue 是可以。而 while 循环组件再搭配代码块的 continue 目前是不支持的。
现在我也不清楚 while 函数 有没有问题···········
但无论什么时候,都不推荐 tab 和 4 个空格 混用。
if not excel_list.iloc[begin_length,][1:] or excel_list.iloc[begin_length,][1:].shape[0] != 7:
这里的不能用,
while a < 3:
而这里的可以用,很不理解