*** Settings *** Library Collections #RF操作列表和字典的一个库 *** Test Cases *** case1 @{list} create list 111 222 333 log to console ${list} #结果:['111', '222', ...
分类:
其他好文 时间:
2020-07-09 01:13:04
阅读次数:
77
import redef mul_div(exp): while re.search("[+-]{2,}",exp): exp = exp.replace("--", "+") exp = exp.replace("-+", "-") exp = exp.replace("++", "+") exp ...
分类:
其他好文 时间:
2020-07-08 23:19:08
阅读次数:
120
from functools import reduce import re def remove_addsub(exp): s=re.findall("[+-]?\d+(?:\.\d+)?",exp) return reduce(lambda a,b:float(a)+float(b),s) s= ...
分类:
其他好文 时间:
2020-07-08 22:51:48
阅读次数:
68
集是不重复元素的结合。集不保留顺序,默认是以哈希集实现 默认情况下,Scala 使用的是不可变集合,如果你想使用可变集合,需要引用 scala.collection.mutable.Set 包 1 集 Set-创建 Set不可变集合的创建 val set = Set(1, 2, 3) //不可变 p ...
分类:
其他好文 时间:
2020-07-08 01:36:36
阅读次数:
72
?## Java 集合框架 学习目标 会使用集合存储数据 遍历集合,取出数据 掌握每种集合的特性 学习方法 学习顶层!通过顶层接口/抽象类的共性方法,所有子类都可以使用 使用底层!顶层无法创建对象,需要使用具体的实现类创建对象 框架图 第一章 Collction集合 一种工具,放在java.util ...
分类:
编程语言 时间:
2020-07-07 23:33:19
阅读次数:
81
class ValuePair{ constructor(key,value){ this.key = key; this.value = value; } } function defaultToString(item){ if(item == null){ return 'null'; } if ...
分类:
编程语言 时间:
2020-07-07 15:20:49
阅读次数:
62
https://stackoverflow.com/questions/4629800/how-to-use-fiddler-to-monitor-wcf-service You need to add this in your web.config <system.net> <defaultPro ...
分类:
其他好文 时间:
2020-07-07 15:00:34
阅读次数:
51
We have a wooden plank of the length n units. Some ants are walking on the plank, each ant moves with speed 1 unit per second. Some of the ants move t ...
分类:
其他好文 时间:
2020-07-07 10:21:05
阅读次数:
78
在ffmpeg中,解码前的数据结构体为AVPacket(参考:3.AVPacket使用),而解码后的数据为AVFrame(视频的YUV, RGB, 音频的PCM) 1.AVFrame介绍 AVFrame必须使用av_frame_alloc()来分配。注意,这只是分配AVFrame本身,缓冲区的数据必 ...
分类:
其他好文 时间:
2020-07-06 20:10:46
阅读次数:
63
C:\WINDOWS\system32>npm install vue-cli -g npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) npm W ...
分类:
其他好文 时间:
2020-07-06 12:56:06
阅读次数:
289