1. Write a python program to select the highest number from the list of number as in the output below.
The output is:
number_list = [22, 5, 76, 100, 12.3, 9]
Answer: The highest number in the number_list is: 100
Answer:
number_list = [22, 5, 76, 100, 12.3, 9] print("The highest number in the number_list is: ", (max(number_list)))
More Exercises:
Python String ExercisesMore Numpy Exercises:
Numpy String ExercisesMore Pandas Exercises:
Pandas Series ExercisesMore Tutorials:
Python Installation - Linux (Ubuntu)