可爱小刺猬

文章
4
资源
0
加入时间
2年10月24天

Python (六) if语句、循环语句

Python if 语句Python if 语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块。if语句的一般形式if condition_1: statement_block_1elif condition_2: statement_block_2else: statement_block_...