Programme Python pour lire une ligne aléatoire à partir d'un fichier.
import random
def randnum(fname):
lines=open(fname).read().splitlines()
print(lines)
return random.choice(lines)
print(randnum('file1.txt'))
Man