Nov-19-2019, 06:51 PM
Hi, I am a beginner.
I need help. Why the code below doesn't return nothing?
shows the error (or warning): <function tax at 0x00000000030F47B8>
I need help. Why the code below doesn't return nothing?
1 2 3 4 5 6 7 8 9 10 |
def tax(year, value): if year > 2004 : tax = value * 22 / 100 else : tax = valor * 11 / 100 tax( 2005 , 100 ) print (tax) |