摘要:
条件判断 run keyword if condition name *args ... ELSE IF conditon name *args ...ELSE name *args condition:python表达式,条件表达式参数 传给python中的eval()函数 name:条件满足时执 阅读全文
摘要:
1 *** Settings *** 2 Library Collections 3 *** Test Cases *** 4 list 5 ${list1} create list a b c 6 ${list2} create list 1 2 3 7 append to list ${list 阅读全文
摘要:
字符串属性:序列、有序、不可变s='abcdefg h kk'print(s.title()) # Abcdefg H Kk 将字符串转换为标题格式print(s.capitalize()) # Abcdefg h kk 将字符串首字母大写print(s.upper()) # ABCDEFG H K 阅读全文