Anyone can code as a problem solver, but no one can google as a good one. Learn how to google to find the information you need to solve the problems here - https://www.youtube.com/watch?v=cEBkvm0-rg0. Now, let’s hear it from the cow, herself.

Question

Computational work is good unless you are a lonely scientist. The ideal gas law is a mathematical approximation of the behavior of gasses as pressure, volume, and temperature change. It is usually stated as:

PV = nRT

where P is the pressure in Pascals, V is the volume in liters, n is the amount of substance in moles, R is the ideal gas constant, equal to 8.314 J/mol K, and T is the temperature in degrees Kelvin.

Write a program that computes the amount of gas in moles when the user supplies

the pressure, volume, and temperature. Test your program by determining the number

of moles of gas in a SCUBA tank. A typical SCUBA tank holds 12 liters of gas at

a pressure of 20,000,000 Pascals (approximately 3,000 PSI). The room temperature is

approximately 20 degrees Celsius or 68 degrees Fahrenheit.

Question

Create a program that reads three integers from the user and displays them in sorted

order (from smallest to largest). Use the min and max functions to find the smallest

and largest values. The middle value can be found by computing the sum of all three

values and then subtracting the minimum value and the maximum value.

Question ( I Know you didn't want to solve this anyway, but the solution is below the question if you want a look at it)

Positions on a chessboard are identified by a letter and a number. The letter identifies the column, while the number identifies the row, as shown below:

Write a program that reads a position from the user. Use an if statement to determine if the column begins with a black square or a white square. Then use modular arithmetic to report the color of the square in that row. For example, if the user enters a1 then your program should report that the square is black. If the user enters d5 then your program should report that the square is white. Your program may assume that a valid position will always be entered. It does not need to perform any error checking.

The solution to the problem above - https://www.online-python.com/g4vTa8x2Gk if you want to learn from it or implement your own.