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

Latest commit

 

History

History
32 lines (26 loc) · 620 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 620 Bytes

Simple Python calculator

Amateur code :)

Included libs:

  • os
  • time
  • math
  • json

Install python and run the file using the command:

python3 calculator.py

Functions

  • Calculator

    • Adding "+"
    • Subtraction "-"
    • Multiplication "*"
    • Division "/"
    • Multiplication "**"
    • Subtraction "//"
    • Nulling the result "null"
  • Hidden

    • "log" (displaying everything the user has typed)
    • "export" (export data to HTML and JSON)
    • "clear" (clear everything rendered in the terminal)
    • "help" or "?" (show help)
    • "quit" or "exit" (exit the application)