1. Write a Python Numpy program to sort the marks of a student according to the course and its marks in increasing order.
The output is:
course = ['Python', 'Machine Learning', 'R Programming', 'Data Science', 'Big Data']
course_mark = [67., 77., 87., 91., 68.]
Expected Answer:
Sorted indices:
[0 4 1 2 3]
Sorted course:
Python 67.0
Big Data 68.0
Machine Learning 77.0
R Programming 87.0
Data Science 91.0
More Exercises:
Python String ExercisesMore Numpy Exercises:
Numpy String ExercisesMore Pandas Exercises:
Pandas Series ExercisesMore Tutorials:
Python Installation - Linux (Ubuntu)