def dec_to_bin(num):. if isinstance(num, int):. result = []. while True: temp = num % 2. num = num // 2. result.append(str(temp)).
確定! 回上一頁