Answered step by step
Verified Expert Solution
Question
1 Approved Answer
in python You are provided with a partially completed program. This program asks the user for a dollar amount. It computes the tax on that
in python
You are provided with a partially completed program. This program asks the user for a dollar amount. It computes the tax on that amount and final price Complete the def pricetoint(text) function. This function will take a string as input. The string has the following properties . Includes characters 0-9 May include period to denote cents. (If not included assume 0 cents.) May include $ sign. May include commas as digit separators. Your function will convert the string into a floating point number. You may not use any built in commands like int or float. You must solve this problem my analyzing the characters in the string of text. If the input is invalid, return-1 as the function's result. Your code should match the below execution trace Determine Price with Tax. Enter 'exit' at any time to quit Enter Amount ($X, XXX. XX): 100.00 Amount: 100.0 Tax: 6.0 Price Tax 106.0 Enter Amount ($X, XXX. XX): 200 Amount: 200Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started