Your plotter should accept two inputs: • The slope • The intercept Your plotter will then output the results for x values of (0, 1, 2, ..., 9), then x values of (10, 100, ..., 100,000). Example output looks like this: Enter the slope: 5.2 Enter the intercept: 6.1 Line y - 5.2 x + 6.1: At x - 0, y - 6.1 At x - 1, y - 11.3 At x - 2, y- 16.5 At x - 3, y 21.700000000000003 At x - 4, y 26.9 X - 5, y - 3 At x - 6, y 37.300000000000004 At x - 7, y - 42.5 At x - 8 , y = 47.7 At x - 9 At x - 10 At x - 100 At x - 1000 At x - 10000, y 52006.1 At x - 100000 , y - 520006.1 y - 52.900000000000006 y = 58.1 y - 526.1 y - 5206.1

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%
Could you write this code in Python. This answer is 85% complete. I can’t see the rest of the code.
Your plotter should accept two inputs:
• The slope
• The intercept
Your plotter will then output the results for x values of (0, 1, 2, .., 9), then x values of (10, 100, ..., 100,000).
Example output looks like this:
Enter the slope: 5.2
Enter the intercept: 6.1
Line y = 5.2 x + 6.1 :
At x - 0, y - 6.1
At x - 1, y - 11.3
At x - 2, y - 16.5
At x - 3
At x - 4, y - 26.9
At x = 5, y = 32.1
At x - 6
At x - 7
At x = 8, y =
At x = 9
At x = 10
, y - 21.700000000000003
37.300000000000004
42.5
47.7
At x - 100
At x - 1000
At x - 10000
At x - 100000 , y - 520006.1
, y = 52.900000000000006
y = 58.1
y - 526.1
, y - 5206.1
y - 52006.1
Transcribed Image Text:Your plotter should accept two inputs: • The slope • The intercept Your plotter will then output the results for x values of (0, 1, 2, .., 9), then x values of (10, 100, ..., 100,000). Example output looks like this: Enter the slope: 5.2 Enter the intercept: 6.1 Line y = 5.2 x + 6.1 : At x - 0, y - 6.1 At x - 1, y - 11.3 At x - 2, y - 16.5 At x - 3 At x - 4, y - 26.9 At x = 5, y = 32.1 At x - 6 At x - 7 At x = 8, y = At x = 9 At x = 10 , y - 21.700000000000003 37.300000000000004 42.5 47.7 At x - 100 At x - 1000 At x - 10000 At x - 100000 , y - 520006.1 , y = 52.900000000000006 y = 58.1 y - 526.1 , y - 5206.1 y - 52006.1
m = float (input ("Enter the slope: "))
c = float(input ("Enter the intercept: "))
print ("Line y = {} x + {} :".format (m, c))
for x in range(11) :
print("At x =
y = {}".format(x, m
{}".format(100, m*1
{}".format(1000, m*
{}".format(10000, m
y = {}".format(100000,
{}
print ("At x =
print ("At x =
print ("At x
print ("At x
{ }
{ }
{ }
{}
y =
y =
V =
Enter the slope: 5.2
Enter the intercept: 6.1
Line y =
5.2 x + 6.1 :
At x = 0
y = 6.1
At x = 1
, y = 11.3
At x = 2
y = 16.5
At x = 3
, y = 21.700000000000003
At x = 4
y = 26.9
At x = 5
y = 32.1
At x = 6
y = 37.300000000000004
At x = 7
y = 42.5
At x = 8
y = 47.7
At x = 9
y = 52.900000000000006
At x = 10
y = 58.1
At x = 100
y = 526.1
At x = 1000
y = 5206.1
At x = 10000
y = 52006.1
At x = 100000
y = 520006.1
Transcribed Image Text:m = float (input ("Enter the slope: ")) c = float(input ("Enter the intercept: ")) print ("Line y = {} x + {} :".format (m, c)) for x in range(11) : print("At x = y = {}".format(x, m {}".format(100, m*1 {}".format(1000, m* {}".format(10000, m y = {}".format(100000, {} print ("At x = print ("At x = print ("At x print ("At x { } { } { } {} y = y = V = Enter the slope: 5.2 Enter the intercept: 6.1 Line y = 5.2 x + 6.1 : At x = 0 y = 6.1 At x = 1 , y = 11.3 At x = 2 y = 16.5 At x = 3 , y = 21.700000000000003 At x = 4 y = 26.9 At x = 5 y = 32.1 At x = 6 y = 37.300000000000004 At x = 7 y = 42.5 At x = 8 y = 47.7 At x = 9 y = 52.900000000000006 At x = 10 y = 58.1 At x = 100 y = 526.1 At x = 1000 y = 5206.1 At x = 10000 y = 52006.1 At x = 100000 y = 520006.1
Expert Solution
Key points to Know

Formula used here is slope*x + intercept

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Processes of 3D Graphics
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education