Your code must:
Please submit your python code as your_name_cubed.py.
Please drop it here:
https://dropitto.me/BIOF309-HW-Week5
I will campare your results to the file name cubed_answers.txt
In [18]:
# Recall that the power function we used in class is:
def comp_power(x, y):
value = x**y
return value
In [ ]: