When answering this question, note that it's completely valid to define a function that makes use of another function. For instance, we can define a function round_up_and_divide_by_three that makes use of the math.ceil function
get_actual_cost()
2.my answer
TODO: Set the get_actual_cost() to the get_actual_cost()
def add_eight(input_var)
output_var = input_var + 8
return output_var
project_cost = get_cost(432,144,400,15)
actual_cost = math.ceil(project_cost)
get_actual_cost = add_eight(actual_cost)
print(get_actual_cost)
Check your answer
q5.check()
3.the error
AttributeError int object has no attribute code
Since I deleted some of the requirements of the question in the process of doing the question, can someone tell me how to change the code?🙏