Python-10-条件和条件语句
生活随笔
收集整理的這篇文章主要介紹了
Python-10-条件和条件语句
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
num = int(input('Enter a number: ')) if num > 0: print('The number is positive') elif num < 0: print('The number is negative') else: print('The number is zero') x == y x 等于y x < y x小于y x > y x大于y x >= y x大于或等于y x <= y x小于或等于y x != y x不等于y x is y x和y是同一個對象 x is not y x和y是不同的對象 x in y x是容器(如序列) y的成員 x not in y x不是容器(如序列) y的成員 同時使用多個比較運算符,如0 < age < 100 布爾運算符and,or,not 斷言 工作原理類似這樣: if not condition: rash program 在錯誤條件出現時就崩潰勝過以后再崩潰 可以添加assert語句充當檢查點 >>> age = 10 >>> assert 0 < age < 100 >>> age = -1 >>> assert 0 < age < 100 Traceback (most recent call last): File "<stdin>", line 1, in ? AssertionError 還可以在后面加一個字符串,對斷言加以說明 >>> age = -1 >>> assert 0 < age < 100, 'The age must be realistic' Traceback (most recent call last): File "<stdin>", line 1, in ? AssertionError: The age must be realistic
轉載于:https://www.cnblogs.com/swefii/p/10828464.html
總結
以上是生活随笔為你收集整理的Python-10-条件和条件语句的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 汇编语言:编写code段中的代码,用pu
- 下一篇: websocket python爬虫_p