“Choix Random Word dans Python à partir d'un fichier texte” Réponses codées

Choix Random Word dans Python à partir d'un fichier texte

import random
print(random.choice(open('file.txt').read().split()).strip())
Inquisitive Iguana

Comment obtenir un mot aléatoire à partir du fichier texte dans Python

import random
def importword(): # finding a random word in the dictionary
    file = open("wdd.txt", "r")
    for x in range(0,random.randint(0,466909)):
        word = file.readline(x)
    return word
Gleaming Gorilla

Réponses similaires à “Choix Random Word dans Python à partir d'un fichier texte”

Questions similaires à “Choix Random Word dans Python à partir d'un fichier texte”

Plus de réponses similaires à “Choix Random Word dans Python à partir d'un fichier texte” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code