python 中assert的使用
assert : 斷言
為什麼使用assert
程式設計師斷定這個程式執行之後或者之前會有這樣的結果,如果不是,那就扔出一個錯誤。
語法:
assert 表示式 [, 引數]
引數是一個字串,用於丟擲錯誤同時顯示
作用是判斷表示式是否成立(為真),如果不成立,丟擲AssertionError
舉例:
def ful(s): a=int(s) assert a!=0,'a is zero' return a/10 c=ful(6) d=ful(0) print(c) print(d)
執行結果
AssertionError: a is zero
相關文章
- Python中斷言assertPython
- C++中的assertC++
- python 列表推導式與 assert 的結合使用Python
- Java中的斷言assertJava
- 在Python中使用“assert”有什麼用?Python
- JavaScript中if巢狀assert的方法JavaScript巢狀
- python斷言方法assertPython
- Python語言assert用法Python
- Solidity中的assert()、require()與revert()SolidUI
- assert
- assert語句,python, 笨辦法學pythonPython
- Python assert斷言函式及用法Python函式
- Python全棧開發之—assert斷言Python全棧
- 防禦式程式設計之斷言assert的使用程式設計
- Junit、Assert、內省、Properties類與配置檔案的使用
- ASSERT函式函式
- Java 斷言 Assert 使用教程與最佳實踐Java
- python中*args的使用Python
- python中for……else……的使用Python
- Python中模組的使用Python
- Nodejs 斷言 assertNodeJS
- 如何使用python中的opengl?Python
- Python 中argparse模組的使用Python
- Python中sort()方法的使用Python
- getopt在Python中的使用Python
- python中的特殊方法使用Python
- sqlalchemy在python中的使用(基本使用)一SQLPython
- 使用xUnit為.net core程式進行單元測試 -- Assert
- input在python中的使用注意Python
- reload在python中的使用Python
- python中__new__的使用注意Python
- python django中restful框架的使用PythonDjangoREST框架
- JSON在Python中的使用JSONPython
- python中zip和format的使用PythonORM
- Python中yaml模組的使用教程PythonYAML
- python中類中 引數的靈活使用Python
- tensorflow.python.framework.errors_impl.InvalidArgumentError: assertion failed: [0] [Op:Assert] namePythonFrameworkErrorAI
- Python:Python 中 jieba 庫的使用(中文分詞)PythonJieba中文分詞