get random line from file python

51

get random line from file python -

import random
lines = open('file.txt').read().splitlines() # creates a list with one line per item
randomLine =random.choice(lines) # pick up a random item in this list

Comments

Submit
0 Comments