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 断言的主要内容,如果未能解决你的问题,请参考以下文章