十进制
def Dec2Bin(dec):result = ''
if dec:
result = Dec2Bin(dec//2) ( 有没大佬懂这两行写得什么 我都看懂一丢丢)
return result + str(dec%2) ( 然后这里怎么把余数倒了过来的,我有点没看懂)
else:
return result
print(Dec2Bin(62))
看看这个帖子:
[已解决] 关于递归问题
https://fishc.com.cn/thread-190816-1-1.html
页:
[1]