码迷,mamicode.com
首页 > 编程语言 > 详细

Python中assert的用法

时间:2014-12-16 18:58:23      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:ar   io   os   sp   on   div   art   bs   ad   

Python中assert的用法

 

Python中assert用来判断语句的真假,如果为假的话将触发AssertionError错误

如:

>>> a = 23
>>> a
23
>>> assert a == 23
>>> a -=1
>>> a
22
>>> assert a == 23

Traceback (most recent call last):
  File "", line 1, in
    assert a == 23
AssertionError
>>>

Python中assert的用法

标签:ar   io   os   sp   on   div   art   bs   ad   

原文地址:http://www.cnblogs.com/jane0912/p/4167737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!