# -*- coding: UTF-8 -*-
import easygui
a=float(easygui.buttonbox("请输入性别.说明男孩选择1,女孩选择2",choices=['1','2']))
if a==1:
easygui.msgbox("本队不招收男孩")
else:
b=float(easygui.enterbox("输入年龄"))
if 10<=b<=12:
easygui.msgbox("恭喜注册成功")
else:easygui.msgbox("女孩年龄过大不招收")
import easygui
a=float(easygui.buttonbox("请输入性别.说明男孩选择1,女孩选择2",choices=['1','2']))
if a==1:
easygui.msgbox("本队不招收男孩")
else:
b=float(easygui.enterbox("输入年龄"))
if 10<=b<=12:
easygui.msgbox("恭喜注册成功")
else:easygui.msgbox("女孩年龄过大不招收")