def fun(k):
if k==1 :
return "1"
elifk%2==0:
return fun(k- 1)+str(k%2)
else:
returnstr(k%2)+fun(k- 1)
执行语句 s=fun(5) ,则 s 的值为( )
微信扫码预览、分享更方便