14 lines
497 B
Python
14 lines
497 B
Python
from fabelous_math import is_even, is_odd, rooting, approximate_pi
|
|
|
|
number = 42
|
|
print(f"Is {number} even? {is_even(number)}")
|
|
print(f"Is {number} odd? {is_odd(number)}")
|
|
|
|
# Extended feature for rooting with a specified root
|
|
root = 4
|
|
number = 16
|
|
print(f"Rooting {number} to the power of {root}: {rooting(number, root)}")
|
|
|
|
# Extended feature for approximate_pi with additional parameters if needed
|
|
precision = 10000000
|
|
print(f"Approximate Pi with precision {precision}: {approximate_pi(precision)}") |