出现UnboundLocalError: local variable ‘a’ referenced before assignment异常的情况与解决方法字面意思:局部变量赋值前被引用原因:局部变量与全局变量同名
解决方法:1.使局部变量与全局变量不同名
2,全局使用global全局变量