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