English
Tamil Nadu Board of Secondary EducationHSC Science Class 12

How will you sort more than one column from a CSV file? Give an example statement. - Computer Science

Advertisements
Advertisements

Question

How will you sort more than one column from a CSV file? Give an example statement.

Short Note

Solution

To sort by more than one column you can use itemgetter with multiple indices.
operator.itemgetter (1,2)

Syntax:
sortedlist = sorted( data, key=operator. itemgetter( Colnumber ),reverse=True)

Example:
data = csv.reader(open(‘c:\\ PYPRG\\sample8.csv’))
next(data) #(to omit the header)
#using operator module for sorting multiple columns
sortedlist = sorted (data, key=operator. itemgetter(1,2))

shaalaa.com
Writing Data into Different Types in CSV Files
  Is there an error in this question or solution?
Chapter 13: Python and CSV files - Evaluation [Page 266]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 12 TN Board
Chapter 13 Python and CSV files
Evaluation | Q 5. | Page 266
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×