Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In a new, empty . py file, write a program that imports the plot and show functions from matplotlib ( from pylab import plot, show

 

In a new, empty .py file, write a program that imports the plot and show functions from matplotlib (from

pylab import plot, show) and then import Pythons random module, which is part of the standard

library, via a the line: import random as rnd

Next, create a list of values called x_values which holds a list of 10 values going from 0 through to 9 

these will be the horizontal values in our graph.

Now create a list of 10 random values within the range 1 to 100 called y_values. You can generate a

random value like this: rnd.randint(1, 100). Dont forget you can use the append function on a list to add a

new value to the end of it!

Once you have 10 values each in your x_values and y_values lists, you can plot them like this:

plot(x_values, y_values)

show()

 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Government and Not for Profit Accounting Concepts and Practices

Authors: Michael H. Granof, Saleha B. Khumawala

6th edition

978-1-119-4958, 9781118473047, 1118155971, 1118473043, 978-1118155974

More Books

Students also viewed these Programming questions

Question

258 PM Thu Mar 24 ACC 215 Chapte

Answered: 1 week ago

Question

What are auxiliary enterprises? How are they accounted for?

Answered: 1 week ago