No project description provided
Project description
ENSFC STEMM Python Package
Table of Contents
Welcome to the ENSFC STEMM Python Package! This package is designed to provide tools and utilities for students and professionals in the fields of Science, Technology, Engineering, Mathematics, and Medicine.
Installation
You can install the package using pip:
pip install ensfc-stemm
Usage
Below are some examples of how to use the functions and classes provided by this package.
Functions
calculate_mean
Calculates the mean of a list of numbers.
from ensfc_stemm import calculate_mean
numbers = [1, 2, 3, 4, 5]
mean = calculate_mean(numbers)
print(f"The mean is: {mean}")
solve_quadratic
Solves a quadratic equation of the form ax^2 + bx + c = 0.
from ensfc_stemm import solve_quadratic
a, b, c = 1, -3, 2
roots = solve_quadratic(a, b, c)
print(f"The roots are: {roots}")
`nth_term
Finds the nth term formula for a given sequence, provided the function is given enough terms to compute a formula
from ensfc_stemm import nth_term
terms1 = [1, 4, 9, 16, 25]
print(nth_term(*terms1)) # Output: n^2
print(nth_term(50, 325, 1168, 3059, 6622, 12625)) # Output: 6n^4 + 10n^3 + 14n^2 + 3n + 7
Classes
Student
Represents a student with a name and a list of grades.
from ensfc_stemm import Student
student = Student(name="John Doe", grades=[90, 85, 92])
print(f"Student Name: {student.name}")
print(f"Average Grade: {student.average_grade()}")
Experiment
Represents a scientific experiment with a name and a list of results.
from ensfc_stemm import Experiment
experiment = Experiment(name="Physics Experiment", results=[9.8, 9.7, 9.9])
print(f"Experiment Name: {experiment.name}")
print(f"Average Result: {experiment.average_result()}")
Contributing
We welcome contributions! Please read our contributing guidelines for more details.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contact
For any questions or suggestions, please contact me at concise_sparsity287626@outlook.com.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ensfc-stemm-0.1.5.tar.gz.
File metadata
- Download URL: ensfc-stemm-0.1.5.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
440a651ade2d9df55b826187c82a32b5ea9582465e9e69563e6cfff53d638d50
|
|
| MD5 |
733d7206e7503235f5826863f1f920c1
|
|
| BLAKE2b-256 |
96d929efa1c9e1675e88cb4875ac654471efbc7bc273782884ebb2d480e3f3b9
|
File details
Details for the file ensfc_stemm-0.1.5-py3-none-any.whl.
File metadata
- Download URL: ensfc_stemm-0.1.5-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb187bd001677ffd2232304f7203b80afead04f68d3c3325afa092417787a1f8
|
|
| MD5 |
2be0f68d3ca8e6254c4cdc3eb05eb8ca
|
|
| BLAKE2b-256 |
c32a926a7ede52b0933a786549469de069de1a0bb80d5e59204ec631d7cf7bf2
|