Quick Start
Welcome to the NumLex documentation! This guide will help you quickly get started with using the NumLex Python package. Follow the steps below to install and start using NumLex in your projects.
Installation
To install NumLex, use pip:
pip install NumLex
Once installed, you can import the modules and functions you need for your project.
Basic Usage
Here’s a simple example to get you started with NumLex:
from NumLex.m.geo import area_trianglefrom NumLex.m.arith import fact
# Calculate the area of a triangle
area = area_triangle(base=10, height=5)print("Area of Triangle:", area)
# Calculate the factorial of a number
factorial = fact(5)print("Factorial:", factorial)
This code calculates the area of a triangle and the factorial of a number using NumLex.
For more details on the available functions and their usage, check out the modules overview section.