top of page

Examples

import tiquations

tiquations.quadratic(1,2,-3)

>>>

Positive value:
1.0
-------------------------------------------------------------
Negative value:
-3.0

>>>

tiquations.circle_area_rad(5)

>>>

78.539

Importing

import tiquations

If you get the error:

Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    import tiquations
ModuleNotFoundError: No module named 'tiquations'

You either have a spelling error in the word tiquations or you haven't installed it correctly. To install open up cmd and type "pip install tiquations" if you're still having trouble after that please send me an email via the Contact page. Also, make sure you're using Python 3 or higher.

Commands

To get a list of the commands type

tiquations.help()

To get a list of the included variables

constants.variables()

To check what version you're currently using type

tiquations.version()

bottom of page