#!/usr/bin/env python# _*_ coding:utf-8 _*_# Author:CarsonLi''' 断言一般用于后面有非常重要的操作,需要使用前面的数据,而且不容许出错 这里就用的到断言,也可以用'''name="Bert"assert type(name) is strprint("断言name是str类型")assert type(name) is not intprint("断言不是int 类型")
本文共 278 字,大约阅读时间需要 1 分钟。
#!/usr/bin/env python# _*_ coding:utf-8 _*_# Author:CarsonLi''' 断言一般用于后面有非常重要的操作,需要使用前面的数据,而且不容许出错 这里就用的到断言,也可以用'''name="Bert"assert type(name) is strprint("断言name是str类型")assert type(name) is not intprint("断言不是int 类型")
转载于:https://www.cnblogs.com/bert227/p/9787016.html