我是靠谱客的博主 柔弱大米,最近开发中收集的这篇文章主要介绍assert的用法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

assert用于断言,也就是判断一下一个表达式的的对与错,或者是一数字或者布尔类型的数据。如果是对的,那就继续执行下面程序,反正出现断言错误的标记,AssertionError

例如:

import tensorflow as tf;    
import numpy as np;    
import matplotlib.pyplot as plt;    
  
assert 1

print 4
输出:

4

import tensorflow as tf;    
import numpy as np;    
import matplotlib.pyplot as plt;    
  
assert True

print 4
输出:

4

import tensorflow as tf;    
import numpy as np;    
import matplotlib.pyplot as plt;    
  
assert 0

print 4
输出:

AssertionError

import tensorflow as tf;    
import numpy as np;    
import matplotlib.pyplot as plt;    
  
assert False

print 4
输出:

AssertionError

# -*- coding: utf-8 -*-
import tensorflow as tf;    
import numpy as np;    
import matplotlib.pyplot as plt;    
  
assert 1 > 0


print 4

输出:

4

最后

以上就是柔弱大米为你收集整理的assert的用法的全部内容,希望文章能够帮你解决assert的用法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部