Number patterns in a sequence
Project description
number-patterns
Under construction! Not ready for use yet. Currently experimenting and planning. Developed by Dilith Achalan (c) 2022
Summary
This project is created to identify the number patterns on a given number sequence which will get the difference in sequence and general term or general ratio.
How to import the module
You can import numpatt module which is inside numpatterns project folder. You may use below code snippet to import convert_str_float funtion.
from numpatterns.numpatt import convert_str_float
Below functions are available to use. Funtions
- convert_str_float
- check_list
- get_common_term
- get_common_ratio
- common_difference
- multi_difference
- classify_pattern
Examples of how to use
convert_str_float - funtion
This funtion take two parameters string number list, seperator and return the output as a list with floating values.
# get user input to enter a number sequence
num_list = input("Enter the number sequence: ")
nth = int(input("Enter the nth in sequence: "))
# calling the 'convert_str_float' function to get a list with string values to float
n_list = convert_str_float(num_list, sep=",")
print(n_list)
check_list - funtion
This funtion will take string number list and check if the list has at least two items to operate sequence
n_list = [2, 4, 6, 8]
# calling the 'check_list' function to validate if list has at least two items
if check_list(n_list):
print("This list has at least two items ")
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 numpatt-sequence-0.0.11.tar.gz.
File metadata
- Download URL: numpatt-sequence-0.0.11.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
728c9df987a52d73ce86da4d98e50f9d7e897a4a385757961ef20144e22d94dd
|
|
| MD5 |
54799416d2912772f1870f5b635dbf7d
|
|
| BLAKE2b-256 |
68fdb5ff892fd098934d73cd2ab4a441461aaed10d3d0b44c5868ed22e8f7060
|
File details
Details for the file numpatt_sequence-0.0.11-py3-none-any.whl.
File metadata
- Download URL: numpatt_sequence-0.0.11-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d0d1c0e51a39bba60db37ecaea7c37994743cf03048ed8442ee8b31b31b945
|
|
| MD5 |
20e87ec99f1c842880fc2600e281b33e
|
|
| BLAKE2b-256 |
06353bb9b2403a495a6ad63d1bc4193daf812ac653e5c2e923c93003eceb36c3
|