I work in a High School Math Department. I am looking at replacing the current programming language(TrueBASIC) with Python. The point in the students coding is to teach math, not programming. So we don't want them doing a LOT of coding for simple math concepts. TrueBASIC is fine but it is not supported.
My current stumbling block is drawing a line segment. I've found ways to draw them using separate lists of x and y values. That will be confusing for students who are just learning what a point is. Rearranging the values so much will cause problems.
The closest thing I've found is a function that will draw a line.
How to draw a line with matplotlib?
This is the first time I've used Python.