Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active May 31, 2016 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/057a670b477b29968cb88e87d1eae000 to your computer and use it in GitHub Desktop.
Save kurozumi/057a670b477b29968cb88e87d1eae000 to your computer and use it in GitHub Desktop.
【Python】PythonでCSVファイルをソートする方法
import csv, operator
with open("file.csv", "r") as f:
reader = csv.reader(f)
# operator.itemgetter(0)で一列目をソート
print sorted(reader, key=operator.itemgetter(0))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment