mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
c909da9b08
* pre-commit: Upgrade psf/black for stable style 2023 Updating https://github.com/psf/black ... updating 22.12.0 -> 23.1.0 for their `2023 stable style`. * https://github.com/psf/black/blob/main/CHANGES.md#2310 > This is the first [psf/black] release of 2023, and following our stability policy, it comes with a number of improvements to our stable style… Also, add https://github.com/tox-dev/pyproject-fmt and https://github.com/abravalheri/validate-pyproject to pre-commit. I only modified `.pre-commit-config.yaml` and all other files were modified by pre-commit.ci and psf/black. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
59 lines
1.4 KiB
Python
59 lines
1.4 KiB
Python
"""Convert a Decimal Number to a Binary Number."""
|
|
|
|
|
|
def decimal_to_binary(num: int) -> str:
|
|
"""
|
|
Convert an Integer Decimal Number to a Binary Number as str.
|
|
>>> decimal_to_binary(0)
|
|
'0b0'
|
|
>>> decimal_to_binary(2)
|
|
'0b10'
|
|
>>> decimal_to_binary(7)
|
|
'0b111'
|
|
>>> decimal_to_binary(35)
|
|
'0b100011'
|
|
>>> # negatives work too
|
|
>>> decimal_to_binary(-2)
|
|
'-0b10'
|
|
>>> # other floats will error
|
|
>>> decimal_to_binary(16.16) # doctest: +ELLIPSIS
|
|
Traceback (most recent call last):
|
|
...
|
|
TypeError: 'float' object cannot be interpreted as an integer
|
|
>>> # strings will error as well
|
|
>>> decimal_to_binary('0xfffff') # doctest: +ELLIPSIS
|
|
Traceback (most recent call last):
|
|
...
|
|
TypeError: 'str' object cannot be interpreted as an integer
|
|
"""
|
|
|
|
if isinstance(num, float):
|
|
raise TypeError("'float' object cannot be interpreted as an integer")
|
|
if isinstance(num, str):
|
|
raise TypeError("'str' object cannot be interpreted as an integer")
|
|
|
|
if num == 0:
|
|
return "0b0"
|
|
|
|
negative = False
|
|
|
|
if num < 0:
|
|
negative = True
|
|
num = -num
|
|
|
|
binary: list[int] = []
|
|
while num > 0:
|
|
binary.insert(0, num % 2)
|
|
num >>= 1
|
|
|
|
if negative:
|
|
return "-0b" + "".join(str(e) for e in binary)
|
|
|
|
return "0b" + "".join(str(e) for e in binary)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|