Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please give me full answer of this question from part A through part E. I am posting this question again even i know the answer

Please give me full answer of this question from part A through part E. I am posting this question again even i know the answer for part A and part B.give me answer for part C, D and part E. image text in transcribed
Homework Question a)- Write and run a Python program that outputs the value of each of the following expressions: 5.0/9 5.0/9 5/9.0 5/9 9.0/5 9.0/5 9/5,0 9/5 now please try it with the truncated division operator 5.0//9.0 S.0/19 5/19.0 5//9 9.0/15.0 9.0//5 9/15.0 9//5 Based on your results, what is the rule for arithmetic operators when integers and floating point numbers are used? b) Write and run a Python program that asks the user for a temperature in Celsius and converts and outputs the temperature in Fahrenheit. (Use the formula given in the example above and solve for tempF in terms of tempc.) c)- Here is an algorithm to print out n! (n factorial) from 0! to 19! .Setf-1 2. Set n- 3. Repeat the following range 1,20) although range (20) will also work but not match #5; a. Output n, "!-E b. Add 1 to n c. Multiply f by n Using a for loop, write and run a Python program for this algorithm. d)-Modify the program above using a while loop so it prints out all of the factorial values that are less than 1 billion. e). Repeat #C above using list comprehensions. Please see these increasingly more sophisticated references for list comprehensions: Simple. Advanced Complex (has a hint for #e)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions