理解并掌握:if else。本课不是占位内容,示例和练习都围绕这个知识点。
age = 15 if age >= 18: print('成年') else: print('未成年')
请根据本课知识,自己写一段包含检查点的代码。
检查点:print, if, else, if