如何从文本文件中选择一个随机行
作者:互联网
我正在尝试为我的学校制作一个彩票计划(我们有一个经济系统).
我的程序生成数字并将其保存到文本文件中.当我想从我的发电机中“拉出”数字时,我希望它确保有一个胜利者.
问:我如何让Python从我的文本文件中选择一个随机行并将输出作为该数字?
解决方法:
How do I have python select a random line out of my text file and give my output as that number?
假设文件相对较小,以下可能是最简单的方法:
import random
line = random.choice(open('data.txt').readlines())
标签:python-3-3,python,random,file 来源: https://codeday.me/bug/20191001/1837743.html