litianyang 发表于 2020-4-27 10:44:58

代码看不懂了

def Dec2Bin(dec):
    temp = []
    result = ''

    while dec:
      quo = dec % 2
      dec = dec // 2
      temp.append(quo)

    while temp:
      result += str(temp.pop())

    return result

print(Dec2Bin(62))
十进制转二进制的
这里面的result= ‘ ’这是个啥
while dec是循环什么
while quo 是循环什么
全部都看不懂了大佬们 帮我放个数字 走一遍可以吗

qiuyouzhi 发表于 2020-4-27 10:47:15

因为返回的是一个字符串,所以用result将每一位拼接起来。
while dec是while dec ! = 0, 和while True一样,你要是不理解,
就想想为什么while True不用写成while True == True.
while quo同上。

heidern0612 发表于 2020-4-27 11:58:37

看这个:戳我前进
页: [1]
查看完整版本: 代码看不懂了