Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

A group of python functions that change from one numbering system to another, and shows the needed steps to aritmetically do so.

License

Notifications You must be signed in to change notification settings

TheJPMZ/Binary_Hexa_Decimal-Converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Binary_Hexa_Decimal-Converter

TheJPMZ

A group of python functions that change from one numbering system to another, and shows the needed steps to arithmetically do so.

This program can change between:

  • Decimal (integer)
  • Binary
  • Hexadecimal

Guide for each function:

Decimal to Hexadecimal (int)

dec_hex(727) 

imagen

Hexadecimal to Binary (str)

hex_bin('2D7') 

imagen

Binary to Decimal (str)

bin_dec('1001')

imagen

Decimal to Binary (int)

dec_bin(14)

imagen

Decimal to Hexadecimal (str)*

bin_hex('1101')

*First to decimal, then to hexadecimal.

imagen

Hexadecimal to Decimal (str)**

hex_dec('2D7')

**First to binary, then to decimal.

imagen

Written with StackEdit.

About

A group of python functions that change from one numbering system to another, and shows the needed steps to aritmetically do so.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages