摘要: if 语句 Python条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。 Python中if语句的一般形式如下所示: if condition_1: statement_block_1 elif condition_2: statement_block_2 els 阅读全文
posted @ 2017-11-01 17:38 龙岳麓 阅读(281) 评论(0) 推荐(0) 编辑