Op dinsdag 10 september 2019 13:03:46 UTC+2 schreef [email protected]:
> Hi everybody,
>
> For school i need to write the right code to get the following outcome.
> Can someone help me with this....
> I can't find a solution to link the word high to 1.21.
>
> 11 print(add_vat(101, 'high'))
> 12 print(add_vat(101, 'low'))
>
> Outcome:
>
> 122.21
> 110.09
>
> Thanks!
my_dict('high':21,'low':5)
def add_vat(amount, vat_rate):
berekening = amount * (1+vat_rate)
return round(berekening,2)
print(add_vat(101, 'high'))
outcome:
File "<ipython-input-56-df2fcd9ee72a>", line 3
def add_vat(amount, vat_rate({'high':21,'low':5})):
^
SyntaxError: invalid syntax
--
https://mail.python.org/mailman/listinfo/python-list