Write a function which converts pressure in atmospheres to pressure in mmHg (millimeters of mercury) (see this page) given input to the function (the user is not asked!) [6pts]
Write a function which asks the user for two numbers, then prints out a response telling the user whether the first or second one was greater, or if they were equal. [6pts]
Your output should look roughly like this:
>>> numsgtlteq()
Enter a first number: 5
Enter a second number: 8
Number 2 is greater than number 1.
>>> numsgtlteq()
Enter a first number: 8
Enter a second number: 5
Number 1 is greater than number 2.
>>> numsgtlteq()
Enter a first number: 5
Enter a second number: 5
Number 1 is equal to number 2.
Write a python program using the turtles and for loops to draw a green pentagon and a blue hexagon. [6pts]