Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.24 KB

README.md

File metadata and controls

51 lines (34 loc) · 1.24 KB

Conversion Calculator

A simple calculator for converting numbers between Binary, Octal, and Hexadecimal formats. This project was created as study material for a Digital Electronics class.

Features

  • Convert between Binary, Octal, and Hexadecimal number systems.
  • User-friendly command-line interface.

Installation

  1. Clone the repository:

    git clone https://github.com/netteNz/Conversion-Calculator.git
  2. Navigate to the project directory:

    cd Conversion-Calculator
  3. Run the program:

    python conversionCalculator.py

Usage

Once the program is running, you can input numbers in one format (Binary, Octal, or Hexadecimal) and the program will convert the number to the other formats.

Example

Enter a binary number: 1010
Octal: 12
Hexadecimal: A

Files

  • conversionCalculator.py: The main Python script that handles conversions.

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License.


This `README.md` includes sections for project description, installation, usage, file descriptions, and contribution guidelines. Let me know if you'd like to add more details!