Question: You need to make 5 python programs for assignment 1 Program 1 : make a Python program that takes the radius of a circle (

You need to make5 python programs for assignment1
Program1 : make a Python program that takes the radius of a circle (a floating-point number) as
input and then outputs the circle's diameter and area. It must read the value of PI from the Math
module. Outputs should be up to two decimal places only.
Program2 : makea Python program that prompts the user to enter the temperature in Celsius
and then convert the temperature to Fahrenheit and print out the converted temperature.
Fahrenheit =(Celsius *1.8)+32
Program3 : makea Python program that prompts the user to enter an integer and then print
out if that integer is odd or even integer. For example, if the integer entered is 5, it prints that "This
integer is odd."
Program4 : makea Python program to calculate the weekly gross pay of an employee. It
prompts the employee to enter total work hours in a week and pay rate per hour. If the total work hours
are more than 40, then the pay is 50% extra for hours worked above 40 hours.
Input total work hours=50 and pay rate per hour=20$ to test your program.
Program5 : makea program to prompt for a score between 0 and 100. If the score is between 0
and 100, print a grade using the following table:
Score Grade
>=90- A
>=80- B
>=70- C
>=60- D
<60- F

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!