Write a program in Python that draws a column chart (usinggraphics).
The program should:
- Display a message stating its goal
- Prompt the user to enter values for category A and category B(please use percentages or decimal numbers only)
- Based on the input, draw a column chart in which each categoryis represented by a different column in a different color
- Make sure to include some kind of legend and a clearrepresentation for the columns values
Expert Answer
Answer to Write a program in Python that draws a column chart (using graphics). The program should: Display a message stating its …