Answers for "get random words from txt"

1

how to get random word from text file in 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
Posted by: Guest on October-09-2021

Code answers related to "get random words from txt"

Python Answers by Framework

Browse Popular Code Answers by Language