递归实现 十进制转换其他进制(2-16)
摘要:
1 def to_str(n, base): 2 convert_string = "0123456789ABCDEF" 3 if n < base: 4 return convert_string[n] 5 else: 6 return to_str(n / base, base) + convert_string[n % base] 7... 阅读全文
posted @ 2017-03-14 19:49 司徒道 阅读(197) 评论(0) 推荐(0) 编辑