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
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
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](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F7d4fd4d4-77c7-4e93-950b-25099f54e660%2Ff968b640-e9d5-478a-a4c1-09d5e3f25024%2Fih7rr0k_processed.jpeg&w=3840&q=75)
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](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F7d4fd4d4-77c7-4e93-950b-25099f54e660%2Ff968b640-e9d5-478a-a4c1-09d5e3f25024%2Fovdd6d_processed.jpeg&w=3840&q=75)
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
![](/static/compass_v2/shared-icons/check-mark.png)
Key points to Know
Formula used here is slope*x + intercept
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
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](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
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)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
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)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education