当前位置:网站首页 > 技术博客 > 正文

python assert怎么用



>>> assert True

# 条件为 true 正常执行
>>> assert False

# 条件为 false 触发异常

Traceback

(

most recent call last

)

:


File

"<stdin>" ,

line

1 , in <

module

>
AssertionError
>>> assert 1 == 1

# 条件为 true 正常执行
>>> assert 1 == 2

# 条件为 false 触发异常

Traceback

(

most recent call last

)

:


File

"<stdin>" ,

line

1 , in <

module

>
AssertionError

>>> assert 1 == 2 , '1 不等于 2'

Traceback

(

most recent call last

)

:


File

"<stdin>" ,

line

1 , in <

module

>
AssertionError

:

1

不等于

2
>>>

  • 上一篇: 荣耀10pro参数配置详情
  • 下一篇: swing技巧
  • 版权声明


    相关文章:

  • 荣耀10pro参数配置详情2024-12-05 12:30:01
  • opcache_compile_file2024-12-05 12:30:01
  • css 栅格2024-12-05 12:30:01
  • bzero函数使用方法2024-12-05 12:30:01
  • argphe2024-12-05 12:30:01
  • swing技巧2024-12-05 12:30:01
  • 服装数字码与字母码怎么对应2024-12-05 12:30:01
  • malloc -12024-12-05 12:30:01
  • 计数排序算法图解2024-12-05 12:30:01
  • springboot配置文件yml和properties区别2024-12-05 12:30:01