My code seems fine but when i run it and input the sales it wont show the commission.
this is python btw.
keep_going = "y"
while keep_going == "y":
sales = float(input("Enter the amount of sales: "))
comm_rate = 10
commission = sales * comm_rate
print ("The commission is: "),commission
keep_going = input("Do you want to calculate another commission? (Enter y for yes): ")
main()