Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

6. Temperature Conversion. Write a Python function that converts a temperature in Fahrenheit to temperature in Celsius. You can use two points of the form

6. Temperature Conversion. Write a Python function that converts a temperature in Fahrenheit to temperature in Celsius. You can use two points of the form (F, C): (32, 0) and (212, 100) to find the genearl conversion formula.

7. Fibonacci Sequence. Fibonacci sequence has the following form: 1,1,2,3,5,8,13,21,... Write a non-recursive Python function Fib(n) that prints the first n terms in the Fibonacci sequence.

8. Assume you are given a list L of numerical data (integers or floating point number). Write a Python function that take list L as an argument and calculates the mean (average) of the

numerical values in the list L.

9. Assume you are given a list L of numerical data (integers or floating point number). Write a Python function that take list L as an argument and calculates the standard deviation of the numerical values in the list L.

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