mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
bc8df6de31
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.2.2 → v0.3.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.2.2...v0.3.2) - [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.8.0...v1.9.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
"""
|
|
This is a pure Python implementation of the P-Series algorithm
|
|
https://en.wikipedia.org/wiki/Harmonic_series_(mathematics)#P-series
|
|
For doctests run following command:
|
|
python -m doctest -v p_series.py
|
|
or
|
|
python3 -m doctest -v p_series.py
|
|
For manual testing run:
|
|
python3 p_series.py
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
def p_series(nth_term: float | str, power: float | str) -> list[str]:
|
|
"""
|
|
Pure Python implementation of P-Series algorithm
|
|
:return: The P-Series starting from 1 to last (nth) term
|
|
Examples:
|
|
>>> p_series(5, 2)
|
|
['1', '1 / 4', '1 / 9', '1 / 16', '1 / 25']
|
|
>>> p_series(-5, 2)
|
|
[]
|
|
>>> p_series(5, -2)
|
|
['1', '1 / 0.25', '1 / 0.1111111111111111', '1 / 0.0625', '1 / 0.04']
|
|
>>> p_series("", 1000)
|
|
['']
|
|
>>> p_series(0, 0)
|
|
[]
|
|
>>> p_series(1, 1)
|
|
['1']
|
|
"""
|
|
if nth_term == "":
|
|
return [""]
|
|
nth_term = int(nth_term)
|
|
power = int(power)
|
|
series: list[str] = []
|
|
for temp in range(int(nth_term)):
|
|
series.append(f"1 / {pow(temp + 1, int(power))}" if series else "1")
|
|
return series
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|
|
|
|
nth_term = int(input("Enter the last number (nth term) of the P-Series"))
|
|
power = int(input("Enter the power for P-Series"))
|
|
print("Formula of P-Series => 1+1/2^p+1/3^p ..... 1/n^p")
|
|
print(p_series(nth_term, power))
|