试题 试卷
题型:单选题 题类: 难易度:容易
浙江省苍南中学2023-2024学年高一下学期信息技术期中考试试卷
def tob(n)
if n=0:
return "*
else:
return tob(n//2)+str(1-n%2)
执行语句s=tob(10) 后,s的值为( )
试题篮