Python 3基础教程8-if else语句 本文介绍if else语句,不多说,直接看例子。# 这里介绍 if else语句x = 5y = 8if x > y: print('x is greater than y')else: print('x is not greater than y') Python 3 从零开始学编程 2023-05-26 43 点赞 0 评论 65 浏览