慕課網python學習筆記4

什麼是表達式 表達式(Expression)是運算符(operator)和操作數(operand)所構成的序列 1+2+3 a = 1+2*3 a = b and or c c=int(‘1’)+2 表達式的優先級 not > and > or 先執行高優先級,再低優先級,同級內從左往右解析(左結合),( )強制增加優先級,括號的優先級最高 特例:賦值運算符(右結合) a = 1 b = 2 c
相關文章
相關標籤/搜索