mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-31 06:33:44 +00:00
Update Maths/BasicMaths.py
Add main method to 'Maths/BasicMaths' module
This commit is contained in:
parent
5f5ab48b8a
commit
54697599f4
|
@ -62,9 +62,13 @@ def eulerPhi(n):
|
||||||
s *= (x - 1)/x
|
s *= (x - 1)/x
|
||||||
return s
|
return s
|
||||||
|
|
||||||
print(primeFactors(100))
|
def main():
|
||||||
print(numberOfDivisors(100))
|
print(primeFactors(100))
|
||||||
print(sumOfDivisors(100))
|
print(numberOfDivisors(100))
|
||||||
print(eulerPhi(100))
|
print(sumOfDivisors(100))
|
||||||
|
print(eulerPhi(100))
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user