我希望在机器人框架级别实现Python str.join
函数,并且我不确定正确的语法。我还在Python中展示了代码的样子(可行)
我试过这个:
机器人:
Set Suite Variable @{list} ['a', 'h', 'b', 'a', 'f', 'h', 'l']
Log @{','.join(list)}
Python中的代码:
P = ['a', 'h', 'b', 'a', 'f', 'h', 'l']
print ','.join(P)
答案 0 :(得分:5)
使用BuiltIn的Catenate。
${my string}= Catenate SEPARATOR=, @{list}
此外,您没有在问题中创建列表。看起来应该更像这样:
@{list}= Create List a h b a f h l