Answered step by step
Verified Expert Solution
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 xvalues which holds a list of values going from through to
these will be the horizontal values in our graph.
Now create a list of random values within the range to called yvalues. You can generate a
random value like this: rndrandint Dont forget you can use the append function on a list to add a
new value to the end of it
Once you have values each in your xvalues and yvalues lists, you can plot them like this:
plotxvalues, yvalues
show
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started