
Patrick B. answered 12/09/20
Math and computer tutor/teacher
# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
#print("Hello world")
name = input("Please input the sales persons name :>")
salesAmt = input("Please input the projected total sales amount :>")
print("---------------------------------------")
print("Sales person: "+name)
print("Total sales amount:$" + '{:.2f}'.format(float(salesAmt)*float(1.00)))
profit = float(salesAmt)*float(0.325)
print("Annual profits : $" + '{:.2f}'.format(profit))
print("=============================================")