import timeimport unittestdef my_sum(a, b): a += 1 b += 2 return a + b# 生成测试用例class TestSum(unittest.TestCase): def test_001(self): print(my_sum(1,2)) ...
分类:
其他好文 时间:
2021-06-24 17:47:34
阅读次数:
0
01.STP Configuration Activity 5.2.5: Configuring STP NOTE TO USER: Although you can complete this activity without printed instructions, a PDF version ...
分类:
系统相关 时间:
2021-06-24 17:37:01
阅读次数:
0
前言 httprunner 3.x可以支持正则匹配断言,使用assert_regex_match方法 assert_regex_match assert_regex_match 源码如下 def assert_regex_match( self, jmes_path: Text, expected_ ...
分类:
Web程序 时间:
2021-06-23 17:08:14
阅读次数:
0
看着是readyonly,尝试js移除readonly属性,然后直接send_keys # 输入元素 下拉框方法封装 #直接sendkeys不行,不会往下走def base_send_keys(self, loc, value): # 先找到元素 el = self.base_find(loc) s ...
分类:
Web程序 时间:
2021-06-19 19:09:02
阅读次数:
0
一般摘要写这几个内容: 我们研究什么问题; 前人是怎么研究这个问题的,有什么不足,还存在哪些挑战; 为解决这个挑战,我们提出什么方法; 具体来说,这个方法主要包含哪几个模块和步骤; 实验效果。 示例:(2020ECCV, Si et al. Adversarial Self-Supervised L ...
分类:
其他好文 时间:
2021-06-17 16:37:35
阅读次数:
0
Python3 双指针 class Solution: def isPalindrome(self, s: str) -> bool: n = len(s) left, right = 0, n - 1 while left < right: while left < right and not s ...
分类:
编程语言 时间:
2021-06-13 10:55:47
阅读次数:
0
认证组件源码入口 APIView下的dispatch下的self.initial(request, *args, **kwargs),源码如下: def initial(self, request, *args, **kwargs): """ 在调用方法处理程序之前运行任何需要发生的事情 """ # ...
分类:
其他好文 时间:
2021-06-13 09:21:54
阅读次数:
0
1)取异或,然后计算1的个数 class Solution: def hammingDistance(self, x: int, y: int) -> int: t = x^y count = 0 while t: count += 1 t = t& t-1 return count ...
分类:
编程语言 时间:
2021-06-11 19:07:12
阅读次数:
0
?这是啥算法题。。 逐个判断写个循环即可 class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1,n+1): if i % 3 == 0 and i % 5 == 0 : result ...
分类:
编程语言 时间:
2021-06-10 17:39:18
阅读次数:
0
演示 代码 from PyQt5.QtWidgets import * import sys class pushButton(QWidget): def __init__(self): super(pushButton,self).__init__() # 对方法进行调用 self.initUI( ...
分类:
其他好文 时间:
2021-06-09 15:30:07
阅读次数:
0