PROGRAMMING:JMU Python input output format output string
Enter 3 lines of string, and then format the output according to the instructions
###Input format:
Line 1: a floating-point string
Line 2: an integer string
Line 3: a non numeric string
###Output format:
**For floating point string:**
Line 1: output with 2 decimal places
Line 2: output the exponential form of small letter E of floating-point number, the exponential form of capital letter E, the percentage form, and the decimal part is' 2 '. The elements of each output are separated by a space.
**For integers:**
Line 3: output its binary and lowercase hexadecimal in one line, separated by a space.
**For non numeric strings:**
First, remove the left and right spaces from the string. Then output 3 lines:
Line 4, convert all characters to uppercase and output.
On line 5, right align the string and output it with a width of '20'.
In line 6, output the string in the middle with a width of '20', and fill in both sides with '*'.
**Finally:**
Line 7: output floating-point number and integer in the form of floating-point number + integer = result
###Input example:
```in
three point one four one five nine two six five
ten
abc 123
```
###Output example:
```out
three point one four
3.141593e+00 3.141593E+00 314.16%
1010 a
ABC 123
abc 123
*abc 123**
3.14159265 + 10 = 13.14159265
```
answer:If there is no answer, please comment
###Input format:
Line 1: a floating-point string
Line 2: an integer string
Line 3: a non numeric string
###Output format:
**For floating point string:**
Line 1: output with 2 decimal places
Line 2: output the exponential form of small letter E of floating-point number, the exponential form of capital letter E, the percentage form, and the decimal part is' 2 '. The elements of each output are separated by a space.
**For integers:**
Line 3: output its binary and lowercase hexadecimal in one line, separated by a space.
**For non numeric strings:**
First, remove the left and right spaces from the string. Then output 3 lines:
Line 4, convert all characters to uppercase and output.
On line 5, right align the string and output it with a width of '20'.
In line 6, output the string in the middle with a width of '20', and fill in both sides with '*'.
**Finally:**
Line 7: output floating-point number and integer in the form of floating-point number + integer = result
###Input example:
```in
three point one four one five nine two six five
ten
abc 123
```
###Output example:
```out
three point one four
3.141593e+00 3.141593E+00 314.16%
1010 a
ABC 123
abc 123
*abc 123**
3.14159265 + 10 = 13.14159265
```
answer:If there is no answer, please comment