上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 85 下一页
摘要: 第一题: select score from student where course = '语文' and name = '张三'; 第二题: update student set score = 100 where course = '数学' and name = '李四'; 第三题: inse 阅读全文
posted @ 2021-04-12 14:42 多测师_王sir 阅读(385) 评论(0) 推荐(1) 编辑
摘要: import numpy def func1(m): '''转置的第一种方法''' return numpy.transpose(m).tolist() print(numpy.matrix([[1, 2, 3],[4 ,5, 6],[7, 8,9]])) #转置之前的数据 print(numpy. 阅读全文
posted @ 2021-04-09 19:23 多测师_王sir 阅读(182) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-04-08 15:05 多测师_王sir 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 首先得了解需求,然后可以从这些方面入手: 界面测试、功能测试、兼容性测试、易用性测试、性能测试,最后根据测试用例模版编写测试用例。 1.界面测试 界面布局、排版是否合理;文字是否显示清晰;不同卖家的商品是否区分明显。 2.功能测试 未登录时: 将商品加入购物车,页面跳转到登录页面,登录成功后购物车数 阅读全文
posted @ 2021-04-08 11:56 多测师_王sir 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 查询当天数据 select * from tab where FROM_UNIXTIME(fabutime, '%Y%m%d') = 20121217; mysql TO_DAYS(date) 函数 TO_DAYS(date) 给定一个日期date, 返回一个天数 (从年份0开始的天数 )。 最近一 阅读全文
posted @ 2021-03-16 21:48 多测师_王sir 阅读(214) 评论(0) 推荐(0) 编辑
摘要: value = input('请输入您的IP地址:') def foo(name): lists = name.split('.') if len(lists) != 4: return '该IP地址不是合法的' for i in range(4): try: tmp = int(lists[i]) 阅读全文
posted @ 2021-03-16 16:48 多测师_王sir 阅读(196) 评论(0) 推荐(0) 编辑
摘要: def foo(value): dict1 = {} a = 0 num =0 for i in range(len(value)): if value[i] in dict1: num = max(dict1[value[i]],num) a = max(i-num+1, a) dict1[val 阅读全文
posted @ 2021-03-16 15:26 多测师_王sir 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 第一题: update CAR_RECORD set Car_Color = 'yellow' where Car_Num = "浙A12A26"; 第二题: select Rec_type as '违法类型',count(Rec_Type) as '数量' from CAR_DPRECORD gr 阅读全文
posted @ 2021-03-16 14:28 多测师_王sir 阅读(119) 评论(0) 推荐(0) 编辑
摘要: select sex as '性别',count('sex')as '个数' from student where class = 'A' group by sex; 阅读全文
posted @ 2021-03-12 17:48 多测师_王sir 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 编写一个程序,将输入字符串中的字符按如下规则排序 规则 1 :英文字母从 A 到 Z 排列,不区分大小写。 如,输入: Type 输出: epTy 规则 2 :同一个英文字母的大小写同时存在时,按照输入顺序排列。 如,输入: BabA 输出: aABb 规则 3 :非英文字母的其它字符保持原来的位置 阅读全文
posted @ 2021-03-12 16:32 多测师_王sir 阅读(1001) 评论(0) 推荐(0) 编辑
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 85 下一页