摘要: def _split_camel_case(string): tokens = [] token = [] for prev, char, next in zip(' ' + string, string, string[1:] + ' '): print(prev, char, next) if 阅读全文
posted @ 2021-04-13 16:24 该显示昵称已被使用了 阅读(444) 评论(0) 推荐(0) 编辑
摘要: import sys from collections import MutableMapping from .platform import PY3, IRONPYTHON from .robottypes import is_dict_like, is_unicode def normalize 阅读全文
posted @ 2021-04-13 11:35 该显示昵称已被使用了 阅读(43) 评论(0) 推荐(0) 编辑
摘要: robot中的timestamp的概念 20210406-104142.897 字符串类型 源码 import time import sys IRONPYTHON = sys.platform == 'cli' def is_number(item): return isinstance(item 阅读全文
posted @ 2021-04-13 10:07 该显示昵称已被使用了 阅读(55) 评论(0) 推荐(0) 编辑