04 2021 档案
摘要:第一题: select score from student where course = '语文' and name = '张三'; 第二题: update student set score = 100 where course = '数学' and name = '李四'; 第三题: inse
阅读全文
摘要:import numpy def func1(m): '''转置的第一种方法''' return numpy.transpose(m).tolist() print(numpy.matrix([[1, 2, 3],[4 ,5, 6],[7, 8,9]])) #转置之前的数据 print(numpy.
阅读全文
该文被密码保护。
摘要:首先得了解需求,然后可以从这些方面入手: 界面测试、功能测试、兼容性测试、易用性测试、性能测试,最后根据测试用例模版编写测试用例。 1.界面测试 界面布局、排版是否合理;文字是否显示清晰;不同卖家的商品是否区分明显。 2.功能测试 未登录时: 将商品加入购物车,页面跳转到登录页面,登录成功后购物车数
阅读全文