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
相关文章
相关标签/搜索