RF--Collections操作列表和字典的一个库
Posted guang2508
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RF--Collections操作列表和字典的一个库相关的知识,希望对你有一定的参考价值。
*** Settings *** Library Collections #RF操作列表和字典的一个库 *** Test Cases *** case1 @{list} create list 111 222 333 log to console ${list} #结果:[‘111‘, ‘222‘, ‘333‘] append to list ${list} a b c log to console ${list} #结果:[‘111‘, ‘222‘, ‘333‘, ‘a‘, ‘b‘, ‘c‘] remove from list ${list} 0 #下标从0开始 log to console ${list} #结果:[‘222‘, ‘333‘, ‘a‘, ‘b‘, ‘c‘]
以上是关于RF--Collections操作列表和字典的一个库的主要内容,如果未能解决你的问题,请参考以下文章