1. import sys
  2. limit = 0; longest_lines = list()
  3. lines = open(sys.argv[1], 'r')
  4. for i, line in enumerate(lines):
  5. line = line.strip()
  6. if line is '':
  7. continue
  8. # Read the limit from the first line
  9. if i is 0:
  10. limit = int(line)
  11. else:
  12. longest_lines.append(line)
  13. lines.close()
  14. for l in sorted(longest_lines, key=len, reverse=True)[:limit]:
  15. print(l)

Write a program which reads a file and prints to stdout the specified number of the longest lines that are sorted based on their length in descending order.

Input sample:

Your program should accept a path to a file as its first argument. The file contains multiple lines. The first line indicates the number of lines you should output, the other lines are of different length and are presented randomly. You may assume that the input file is formatted correctly and the number in the first line is a valid positive integer.

For example:

2

Hello World

CodeEval

Quick Fox

A

San Francisco

Output sample:

Print out the longest lines limited by specified number and sorted by their length in descending order.

For example:

San Francisco

Hello World