the reason i have signed up here today is to ask for a hint to where i'm going wrong in this argument. i am very new to coding and was hoping i might be able to get some help. i feel i'm slightly cheating myself by asking for help so early, so if someone can explain where I've made mistakes i would like to try and figure out how to correct them, clues and hints would be appreciated but i would really like to understand where the errors are what to do to correct them and why, so please don't just paste the answer. thanks
ok here is my attempt at Writing a Car salesman program where the user enters the base price of a car. The program should add a bunch of extra fees such as tax, license, dealer prep, and destination charge. Make tax and license a percent of the base price. The other fees should be set values. Display the actual price of the car once all the extras are applied.
base_price = float(input("please enter base price of car",))
taxes *=0.06
float(input(taxes))
licence *= 0.01
float(input(licence))
premium_pack += 1250
print("premium pack + 1250")
total_price = base_price + premium_pack + taxes + licence
print("\n\total price:", total_price))
input("\n\npress enter key to exit")
the last time i ran the program i had a name error
taxes *= 0.06
NamError: name 'taxes' is not defined
o.k. i hope this information helps and thank you for your time in advance
alex