月半三木 发表于 2021-6-7 20:22:32

课后作业

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))
while temp:循环何时会终止啊,当temp列表为空?

不能懒 发表于 2021-6-7 20:45:13

temp为假就跳出了

Twilight6 发表于 2021-6-7 20:58:58


g.integerbox = ('请输入1到100之间的数字',lowerbound = 0,upperbound = 99)

是的,当 temp 为空时退出循环,在 Python 中 0、None、空列表、空字符串等空对象都可以视为布尔类型值的 False

同理 非0、非None、非空对象都可视为布尔类型值的 True
页: [1]
查看完整版本: 课后作业