0
I don’t know where I went wrong can you help me?
x=0 total=int(input()) price= total*5 taxcut=(price+(price*0.07)) discount=(taxcut -(taxcut*0.1)) if x>1: print(price) else: print(taxcut)
3 Respostas
+ 3
Your conditions is if x bigger then 1 or not. Also you’ve assigned x staticly to 0. Hence you can only return else statement which is (taxcut)
+ 6
What is x for?
0
Tqsm