Skip to main content

A simple package for calculating Fibonacci series

Project description

fibonacci-package on PyPI

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

fibonacci_package-0.3.1.tar.gz (1.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fibonacci_package-0.3.1-py3-none-any.whl (2.4 kB view details)

Uploaded Python 3

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

Hashes for fibonacci_package-0.3.1.tar.gz
Algorithm Hash digest
SHA256 e1d0c0904dd2d94b5e49b7a97496722791b3beb221e6e94a9e9dbc64477156e8
MD5 2cc14f28195c83c61717b1b95be63b93
BLAKE2b-256 5c531ac45bfd7e1ff67a6dcde4f737bd8129113238b8cecb1b8b4e6795799e5b

See more details on using hashes here.

File details

Details for the file fibonacci_package-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for fibonacci_package-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 98ce12fcb6e260d7eba00529fb3ec462e7963031941c217266afdcb2c641f165
MD5 5673dc9aa2d3c5bbb04d6435c7260bc2
BLAKE2b-256 f00c9107dcdf34cc7e97304700b0419d7c6975f020a3e70d6e1b99f9f20cb3ea

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page