2020
10-01
10-01
python 写函数在一定条件下需要调用自身时的写法说明
例如以下这个函数:state=1defset_state(state):whilestate:set=int(input('请输入9或5,显示"helloworld"\n'))ifset==9orset==5:print('helloworld')state=int(input('输入1继续,输入0停止!\n'))else:print('请输入要求的值!')set_state(state)#breakset_state(state)print('end')这个函数设计的目的是让用户输入指定的值,若输入的值并非指定值,则重新输入。...
继续阅读 >