Python Task02

Python Task02 條件與循環 1.條件語句 (1)if語句 if expression: expression_true_suite 只有expression爲真時才執行後面的表達式 if 2>1 and not 2>3: print(‘Hello world!’) Hello world! (2)else語句 if expression: expression_true_suite e
相關文章
相關標籤/搜索