In python please

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

In python please

• create_equation(n, pct_per_digit): Takes one positive odd integer and one float in [0, 1[ as input.
Returns a randomly-created mathematical equation as a list of tokens. The list should be of length
n. The second input determines the chance that a number in the equation will have more than one
digit. The equation does not have to be correct (i.e., the equality does not have to hold), but it
must be syntactically valid (e.g., there cannot be two numbers or operators next to each other).
An equation is formed by placing together numbers and mathematical operators, and an equals sign
somewhere in the middle. Note that a mathematical operator can only be in between two numbers;
it can never be at the start or end of the equation. Note: You do not have to include parentheses
in your equation.
One way to approach this function is to generate a random number, followed by a random operator,
and then repeat until the desired length is obtained. Then you could randomly replace one of the
operators with the equals sign.
Note: the following examples are dependent on a particular way of randomly generating an equation.
Your approach to generating an equation (e.g., your particular ordering of the calls to random
functions) will result in different equations, and that is fine. We will be checking to see that the
equations returned by your function are random, of correct length, syntactically valid, and can
contain all the possible digits and operations.
>>> random.seed(42)
>>> create_equat ion(9, 0.0)
[1, '/', 3, '=', 9, '^', 1,
IAI
", 4]
>>> random.seed(1337)
>>> create_equat ion(7, 0.5)
[9, '/', 3, '=', 56, 'x', 6]
>>> random.seed(9001)
>>> create_equation(11, 0.75)
[95498187,
'=',
', 4724, 'x', 179840685193, '/', 1469713, '+',
, 65638, '/', 3]
Transcribed Image Text:• create_equation(n, pct_per_digit): Takes one positive odd integer and one float in [0, 1[ as input. Returns a randomly-created mathematical equation as a list of tokens. The list should be of length n. The second input determines the chance that a number in the equation will have more than one digit. The equation does not have to be correct (i.e., the equality does not have to hold), but it must be syntactically valid (e.g., there cannot be two numbers or operators next to each other). An equation is formed by placing together numbers and mathematical operators, and an equals sign somewhere in the middle. Note that a mathematical operator can only be in between two numbers; it can never be at the start or end of the equation. Note: You do not have to include parentheses in your equation. One way to approach this function is to generate a random number, followed by a random operator, and then repeat until the desired length is obtained. Then you could randomly replace one of the operators with the equals sign. Note: the following examples are dependent on a particular way of randomly generating an equation. Your approach to generating an equation (e.g., your particular ordering of the calls to random functions) will result in different equations, and that is fine. We will be checking to see that the equations returned by your function are random, of correct length, syntactically valid, and can contain all the possible digits and operations. >>> random.seed(42) >>> create_equat ion(9, 0.0) [1, '/', 3, '=', 9, '^', 1, IAI ", 4] >>> random.seed(1337) >>> create_equat ion(7, 0.5) [9, '/', 3, '=', 56, 'x', 6] >>> random.seed(9001) >>> create_equation(11, 0.75) [95498187, '=', ', 4724, 'x', 179840685193, '/', 1469713, '+', , 65638, '/', 3]
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY