鱼C论坛's Archiver
论坛
›
新手乐园
› 递归十进制转二进制
huangdongdong
发表于 2021-2-20 20:55:03
递归十进制转二进制
1 def Dec2Bin(dec):
2 result = ''
3 if dec:
4 result = Dec2Bin(dec//2)
5 return result + str(dec%2)
6 else:
7 return result
8 print(Dec2Bin(9))
求第2,4,5行的详细解释和该程序运行的具体过程
Stubborn
发表于 2021-2-20 20:55:04
https://fishc.com.cn/thread-190816-1-1.html
参考6楼的回答
页:
[1]
查看完整版本:
递归十进制转二进制