Question: Please use python 3, and make sure pass the test case. One of the more interesting uses of escape characters is to generate format strings
Please use python 3, and make sure pass the test case.
One of the more interesting uses of escape characters is to generate format strings depending on the value of a variable, which we can then turn around and use as a dynamically-defined format string for some data. mplement the function pi _to_digits(n) below, which should print a string matching the following format: >>> pi_to_digits (6) The number pi is equal to 3.14159 to 6 digits of accuracy. I've given you pi to 30 digits as a starting point, and two tests that your function should pass if it's properly implemented pi 3.14159265358979311599796346854 def pi_to_digits(n) ## YOUR CODE HERE print (pi_to_digits(6)) from nose.tools import assert_ equal assert equal (pi_to_digits(6), The number pi is equal to 3.14159 to 6 digits of accuracy. assert_equal (pi to_digits(4), The number pi is equal to 3.142 to 4 digits of accuracy
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
