# def test():# num=int(input("输入数字:"))# if num%2==0:# return True#如果是偶数,程序就退出,返回true# print("不是偶数")# return test()#如果不是偶数的话就继续调用自己,输入值# print(test())#调用test#少用递归,递归最多递归999,效率不高i=0def test1(): global i i+=1 print(i) test1()test1()
posted on 2018-04-18 22:23 公子兔 阅读(93) 评论(0) 编辑 收藏 举报