Python Tutorial: Making a simple command line calculator
Python
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
.vscode
.gitattributes
Advanced Calculator Tutorial.md
Advanced Calculator.py
LICENSE.txt
README.md
Simple Calculator Tutorial.md
Simple Calculator.py

README.md

SimplePythonTutorial

Python Tutorial: Making a simple command line calculator. Assumes no knowledge of programming in python. I originally made the code for a 6th grade (2013) Math project in which I would be teaching the class how to write code in Python.

Simple Calculator

  • Supports the functions +,-,*,/

Tutorial

Source

Advanced Calculator

  • Supports the functions +,-,*,/,^,sqrt,!,abs,sin,cos,tan,arcsin,arccos,arctan,log,log10,rand,randint
  • Also has memory ability M+,MR,M-
  • Can recall constants pi,e,tau
  • Can convert Degrees to Radians, Radians to Degrees

Tutorial

Source