O Prod . Youtube 1. Write a Python program that asks the user for a series of numbers, as in the example above. But, there are some improvements to be made over the example. For each number, assume that if the number has no fractional part that it is to be displayed as an integer. If it has a non-zero fractional part, then display it using a floating point format that has 2 digits to the right of the decimal and is otherwise is no longer than needed to print the number (that is, with no extra leading spaces). Print the user's numbers on one line with commas and 'and's as above. 1. Write a Python program that asks the user for a series of numbers, as in the example above. But, there are some improvements to be made over the example. For each number, assume that if the number has no fractional part that it is to be displayed as an integer. If it has a non-zero fractional part, then display it using a floating point format that has 2 digits to the right of the decimal and is otherwise is no longer than needed to print the number (that is, with no extra leading spaces). Print the user's numbers on one line with commas and 'and's as above. Several example runs are shown below. C:\Users\brokow\UCH Classes\ME 021 2020 Spring Assignments >HWOS 01.py Enter a value: 3 Enter to quit or anything else to continue: 4 The values entered were: 3. ME021 - Engineering Computing - Spring 2020 C:\Users\brokow\UCM Classes VE 021 2020 Spring AssignmentsW05_01.py Enter a value: 3 Enter to quit or anything else to continue Enter a value: 4.673 Enter to quit or anything else to continue: Enter a value: 93.09 Enter to quit or anything else to continue: 9 The values entered were: 3, 4.67, and 93.09. Clicant