Question: python: a. String formatting lets you customize the way values are displayed when using the print function. Create a function called fun2 that uses a
python: a. String formatting lets you customize the way values are displayed when using the print function. Create a function called "fun2" that uses a while loop instead of a for loop and range function.

b. create a function called "fun3" that produces output similar to "fun1", has a single input parameter that is a data list, which specifies the values of x. If the inputted data list is empty, your function should not display anything, as shown below in the ex output

x x/2 (x/2)3 00.0 0.000 5 2.515.625 10 5.0 125.000 15 7.5 421.875 20 10.0 1000.000 >>> # Example Output >>> data-[1, 2, 3, 50, -1 >>>fun3 (data) xx/2 (x/2)3 0.125 1.000 3.375 50 25.0 15625.000 -0.125 1 0.5 1.0 3 1.5 -10.5 >>> data-[) >>> fun3 (data)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
