摘要: 先上用Python写的十进制转二进制的函数代码: 1 def Dec2Bin(dec): 2 result = '' 3 4 if dec: 5 result = Dec2Bin(dec//2) 6 return result + str(d... 阅读全文
posted @ 2015-12-03 15:49 翌逍 阅读(6023) 评论(1) 推荐(4) 编辑