11. Find local and global variable:
def post_tax_price(cost): #compute payable
amount for the tent
tax = 0.18 * cost;
net_price = cost + tax
return(net_price)
print("Enter values of cylindrical part of the tent
in meters:")
h = float(input("Height: "))
r = float(input("Radius:"))
csa_cyl = cyl(hr)
Answers
Answered by
0
Answer:
local variables: tax, net_price
global variable: h, r csa_cyl
Similar questions