Merge branch 'Juan' of https://github.com/Miranda13/Python into Juan

This commit is contained in:
Juanitoupipou 2024-11-27 16:06:43 +01:00
commit 941efc3a38

View File

@ -59,7 +59,7 @@ def proth(number: int) -> int:
return proth_list[number - 1]
def isprothnumber(number: int) -> bool :
def isprothnumber(number: int) -> bool:
"""
:param number: nth number to calculate in the sequence
:return: true if number is a Proth number, false etherwise
@ -89,8 +89,6 @@ def isprothnumber(number: int) -> bool :
return num < (2**n)
if __name__ == "__main__":
import doctest
@ -108,7 +106,7 @@ if __name__ == "__main__":
listexe = [3, 5, 9, 13, 49, 57, 193, 241, 163, 201]
for number in listexe :
for number in listexe:
if isprothnumber(number):
print(f"{number} is a Proth number")
else: