''' Write a program that draws several lines with random beginning and end points. Make sure each line starts and ends within the screen. Hint: Make use of the random package in your code. Two examples are shown below: ''' import random as rnd # Return random number between 0.0 and 1.0: rnd.random() # Return an integer between -2 and 2 (both included): rnd.randint(-2,2)