A simple package for calculating Fibonacci series
Project description
Overview
This is a simple Python package for calculating the Fibonacci sequence. This package is created for testing purposes and uploading to PyPI.
Installation
You can install this package using pip:
pip install fibonacci_package
Example
Once installed, you can use the package in your Python scripts. Here are two different ways to calculate the Fibonacci sequence:
Recursive Algorithm
from fibonacci_package.fibonacci import calculate_fibonacci
# Get the number of terms from the user
n = int(input("Enter the number of terms you want in the Fibonacci sequence: "))
# Calculate the Fibonacci sequence
result = calculate_fibonacci(n)
# Print the result
print(f"The first {n} terms of the Fibonacci sequence are: {result}")
Memoizing the Recursive Algorithm
from fibonacci_package.fibonacci import fibonacci_with_memoization
n = int(input("Enter the number of terms you want in the Fibonacci sequence: "))
fibonacci_sequence = [fibonacci_with_memoization(i) for i in range(n)]
print(f"The first {n} terms of the Fibonacci sequence (memoized) are: {fibonacci_sequence}")
Output for two cases
python your_script.py
Enter the number of terms you want in the Fibonacci sequence: 10
The first 10 terms of the Fibonacci sequence are: [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
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 fibonacci_package-0.3.1.tar.gz.
File metadata
- Download URL: fibonacci_package-0.3.1.tar.gz
- Upload date:
- Size: 1.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1d0c0904dd2d94b5e49b7a97496722791b3beb221e6e94a9e9dbc64477156e8
|
|
| MD5 |
2cc14f28195c83c61717b1b95be63b93
|
|
| BLAKE2b-256 |
5c531ac45bfd7e1ff67a6dcde4f737bd8129113238b8cecb1b8b4e6795799e5b
|
File details
Details for the file fibonacci_package-0.3.1-py3-none-any.whl.
File metadata
- Download URL: fibonacci_package-0.3.1-py3-none-any.whl
- Upload date:
- Size: 2.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98ce12fcb6e260d7eba00529fb3ec462e7963031941c217266afdcb2c641f165
|
|
| MD5 |
5673dc9aa2d3c5bbb04d6435c7260bc2
|
|
| BLAKE2b-256 |
f00c9107dcdf34cc7e97304700b0419d7c6975f020a3e70d6e1b99f9f20cb3ea
|