python基础 一行代码实现1~100累加,不使用for循环 方式一: sum(range(1,101)) 方式二: 1 from functools import reduce 2 reduce(lambda x,y:x+y, range(1,101)) 单元测试 unittest执行类型 * 1.请使用Shell或其他脚本语言编写一个针对Linux进程监控及故障重启的脚本 * 2.请使用Python写一个脚本,对接口http://abc.com/api/test 进行Get方法模拟压测,可…