`
gumuzhiyu
  • 浏览: 37331 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

python test2

 
阅读更多
# two param
# -nt
def isNewthan(x, y):
        t1 = int(os.stat(x).st_ctime)
        t2 = int(os.stat(y).st_ctime)
        if t1 > t2:
            return 0
        else:
            return 1    

# -ot
def isOlderthan(x, y):
        t1 = int(os.stat(x).st_ctime)
        t2 = int(os.stat(y).st_ctime)
        if t1 < t2:
            return 0
        else:
            return 1    

# -eq
def isEqual(x, y):
    try:
        x = int(x)
        y = int(y)
        if x == y:
            return 0
        else:
            return 1
    except ValueError:
        return 1
# -ge
def isGraterEqual(x, y):
    try:
        x = int(x)
        y = int(y)
        if x >= y:
            return 0
        else:
            return 1
    except ValueError:
        return 1    

# -gt
def isGranterthan(x, y):
    try:
        x = int(x)
        y = int(y)
        if x > y:
            return 0
        else:
            return 1
    except ValueError:
        return 1
# -le
def isLessEqual(x, y):
    try:
        x = int(args.x)
        y = int(args.y)
        if x <= y:
            return 0
        else:
            return 1
    except ValueError:
        return 1
# -lt
def isLessthan(x, y):
    try:
        x = int(x)
        y = int(y)
        if x < y:
            return 0
        else:
            return 1
    except ValueError:
        return 1    
# -ne
def isNotEqual(x, y):
    try:
        x = int(x)
        y = int(y)
        if x != y:
            return 0
        else:
            return 1
    except ValueError:
        return 1    
# -a
def isAnd(x, y):
    if bool(x) == True and bool(y) == True:
        return 0
    else:
        return 1
# -o
def isOR(x, y):
    if bool(x) == True or bool(y) == True:
        return 0
    else:
        return 1

分享到:
评论

相关推荐

    PythonTest test test

    //传递参数时,每个参数中间要有一个空格 //Python接收参数的方法: //从1开始接收参数 //args1= sys.argv[1] //args2=sys.argv[2] //args2=sys.argv[3]

    Amber Python Test.zip

    标题中的"Amber Python Test.zip"表明这是一个使用Python语言进行测试的项目,被压缩成一个ZIP文件以便存储和传输。ZIP是一种常见的文件归档格式,它允许用户将多个文件和目录打包成一个单一的文件,方便管理和分享...

    test.py_pythontest_python_

    "pythontest"和"python"标签进一步强调了这个文件与Python编程的关联,可能表明这是一个学习、实践或者调试Python代码的场景。 在Python编程中,`test.py`这样的文件通常包含了单元测试,这是一种软件开发的最佳...

    E:\My Documents\Visual Studio Projects\PythonTest\PythonTest.rar

    标题 "E:\My Documents\Visual Studio Projects\PythonTest\PythonTest.rar" 提示我们这是一个位于特定路径下的RAR压缩文件,通常用于存储多个文件或文件夹以便于传输或归档。RAR是一种流行的压缩格式,由RarLab开发...

    pythontest.zip

    标题中的"pythontest.zip"表明这是一个包含Python相关测试内容的压缩文件。描述中同样提到"pythontest.zip",暗示这个压缩包可能包含了用于学习、实践或测试Python编程的各种资源。标签"python"进一步确认了这个...

    python自动生成Verilog的testbench脚本

    python自动生成Verilog的testbench脚本。python自动生成Verilog的testbench脚本。python自动生成Verilog的testbench脚本。

    python test 回归函数

    test_data = [[1, 2], [3, 4]] expected_output = [3.5, 7.5] # 使用训练好的模型进行预测 actual_output = model.predict(test_data) self.assertAlmostEqual(actual_output[0], expected_output[0], delta=...

    Python_USB_CAN_Test_pythoncan_can总线_can总线python_usb_python_

    在“Python_USB_CAN_Test_working with 2 channels simultaneuously”这个示例中,我们将探讨如何处理两个CAN通道的同时操作。假设你有两个USB-CAN设备,分别连接到`can0`和`can1`,可以创建两个独立的CAN接口并同时...

    Python Unit Test Automation:for Python Developers and Testers

    All of which makes this book a great resource for software developers and testers who want to get started with unit test automation in Python 3 and compare the differences with Python 2. This short ...

    testpython.zip

    "testpython.zip"这个压缩包包含了多个与Python编程相关的源代码文件,每个文件都对应了Python语言的不同方面,对于初学者来说是很好的学习资源。以下是对这些文件中可能包含的知识点的详细解释: 1. **objecttsdt....

    my cpytest --python test frame

    python test ''' Created on 2011-11-2 @author: ACER ''' import glob, os from testframe.TestSuite import * class PyTestRunner: @staticmethod def run(suite): TestSuite.run(suite) @staticmethod ...

    PythonTest_python_

    "PythonTest"可能是一个与Python相关的项目或者教程,旨在帮助用户学习和实践Python编程。 在Python编程中,有几个关键知识点是所有初学者都应该掌握的: 1. **基础语法**:Python的语法规则非常直观,如缩进替代...

    testpython.rar

    2. 编译后的动态库文件:如.so(Linux)或.dll(Windows),这是Python代码经过编译转换成的二进制形式,可以直接被其他语言调用。 3. 配置或头文件:可能包含接口函数的定义和使用说明,供其他语言的开发者参考。 4...

    Python库 | test_tube-0.6.7.1.tar.gz

    资源分类:Python库 所属语言:Python 资源全名:test_tube-0.6.7.1.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    ps_demo_python_test

    ps_demo_python_test

    Python库 | testcontainer_python_minio-0.2.0-py3-none-any.whl

    标题中的“Python库 | testcontainer_python_minio-0.2.0-py3-none-any.whl”指的是一个针对Python开发的库,名为`testcontainer_python_minio`,其版本为0.2.0。这个库是用Python 3编写的,因为文件名中的“py3”...

    python test

    在描述中提到了“博文链接:https://love2java.iteye.com/blog/1543204”,这可能是一个关于Python测试的实际示例或教程,但实际内容无法在这里提供,因为这是一个假设的情景。通常,这样的博客文章会包含实际的代码...

    PS_python_test.002

    PS_python_test.002

    test/python

    "test/python"这个标题可能指的是一个测试环境或项目,其中包含了与Python编程相关的代码、脚本或者测试用例。这个环境可能是为了验证Python程序的正确性,优化性能,或者确保软件的稳定性和兼容性。 描述中的"文档...

Global site tag (gtag.js) - Google Analytics