“Programme Python pour lire une ligne aléatoire à partir d'un fichier” Réponses codées

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

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

Réponses similaires à “Programme Python pour lire une ligne aléatoire à partir d'un fichier”

Questions similaires à “Programme Python pour lire une ligne aléatoire à partir d'un fichier”

Plus de réponses similaires à “Programme Python pour lire une ligne aléatoire à partir d'un fichier” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code