मराठी
तामिळनाडू बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान इयत्ता १२

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

Advertisements
Advertisements

प्रश्न

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

टीपा लिहा

उत्तर

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 13: Python and CSV files - Evaluation [पृष्ठ २६६]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 12 TN Board
पाठ 13 Python and CSV files
Evaluation | Q 5. | पृष्ठ २६६
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×