Please help, this code returns blank. What is wrong with it??

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

PYTHON PROGRAMMING

Please help, this code returns blank. What is wrong with it??

PC
02:07 PM
2022-07-02
Lè
File Edit Format Run Options Window Help
#Define the function median3
def median3 (x, y, z):
#Create list
t = [x, y, z)
||
#Sort it and return mid value
t.sort ()
return t[1]
#main function
def main ():
2_1_16.py - C:/Users/Ziyanda Madzidi/Downloads/Bachelor of Science/Third year 2022/2_1_16.py (3.8.0)
print('median3 : Enter three numbers to find the median.
x = float (input('First value: '))
y = float (input('Second value: '))
z = float (input('Third value: '))
print('The median is ',median3 (x, y, z))
main ()
Ln: 18 Col: 10
Transcribed Image Text:PC 02:07 PM 2022-07-02 Lè File Edit Format Run Options Window Help #Define the function median3 def median3 (x, y, z): #Create list t = [x, y, z) || #Sort it and return mid value t.sort () return t[1] #main function def main (): 2_1_16.py - C:/Users/Ziyanda Madzidi/Downloads/Bachelor of Science/Third year 2022/2_1_16.py (3.8.0) print('median3 : Enter three numbers to find the median. x = float (input('First value: ')) y = float (input('Second value: ')) z = float (input('Third value: ')) print('The median is ',median3 (x, y, z)) main () Ln: 18 Col: 10
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Lists
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning