Answers for "Python program to read a random line from a file."

0

Python program to read a random line from a file.

import random
def randnum(fname):
	lines=open(fname).read().splitlines()
	print(lines)
	return random.choice(lines)

print(randnum('file1.txt'))
Posted by: Guest on December-03-2020

Code answers related to "Python program to read a random line from a file."

Python Answers by Framework

Browse Popular Code Answers by Language