Answers for "inport random word from a txt file python"

1

choice random word in python from a text file

import random
print(random.choice(open('file.txt').read().split()).strip())
Posted by: Guest on October-19-2020

Code answers related to "inport random word from a txt file python"

Python Answers by Framework

Browse Popular Code Answers by Language