Write a function called largest3 which takes 3 numbers as parameters and returns the largest of the 3. Write a program which tak
es 3 numbers as input from the user and then calls the function with those 3 numbers as parameters. The function will reutrn the largest number. Your program should then output this returned largest number. The input and output parts should be outside the function. The functions should only take 3 numbers as parameters and return the largest one.
print("The largest number is " + str(largest_number))
Explanation:
<u>Create function largest3</u>
Firstly, we can create a function <em>largest3 </em>which take 3 numbers (<em>num1, num2, num3</em>) as input. (Line 1).
Please note Python uses keyword <em>def </em>to denote a function. The code from Line 2 - 10 are function body of <em>largest3</em>.
Within the function body, create a variable,<em> largest</em>, to store the largest number. In the first beginning, just tentatively assign<em> num1 </em>to<em> largest</em>. (Line 2)
Next, proceed to check if the current "<em>largest</em>" value smaller than the<em> num2 </em>(Line 4). If so, replace the original value of largest variable with <em>num2</em> (Line 5).
Repeat the similar comparison procedure to<em></em><em>num3</em> (Line 7-8)
At the end, return the final value of "<em>largest</em>" as output
<u>Get User Input</u>
Prompt use input for three numbers (Line 13 -15) using Python built-in <em>input</em> function.
Please note the input parts of codes is done outside of the function <em>largest3</em>.
<u>Call function to get largest number and display</u>
We can simply call the function<em> largest </em>by writing the function name <em>largest</em> and passing the three user input into the parenthesis as arguments. (Line 17)
The function <em>largest </em>will operate on the three arguments and return the output to the variable <em>largest_number</em>.
Lastly, print the output using Python built-in <em>print</em> function. (Line 18)
Please note the output parts of codes is also done outside of the function<em> largest3</em>.
A distillation column is an essential item used in the distillation of liquid mixtures to separate the mixture into its component parts, or fractions, based on the differences in volatilities. Fractionating columns are used in small scale laboratory distillations as well as large scale industrial distillations.