Python3 断言

Posted CansonHai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 断言相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# _*_ coding:utf-8 _*_
# Author:CarsonLi
‘‘‘
    断言一般用于后面有非常重要的操作,需要使用前面的数据,而且不容许出错
    这里就用的到断言,也可以用
‘‘‘
name="Bert"

assert type(name) is str
print("断言name是str类型")

assert type(name) is not int
print("断言不是int 类型")

  

以上是关于Python3 断言的主要内容,如果未能解决你的问题,请参考以下文章

Python3 断言

scrapy主动退出爬虫的代码片段(python3)

scrapy按顺序启动多个爬虫代码片段(python3)

Python3 unittest断言详解

Python3 异常与断言

Python3-笔记-D-001-异常与断言