python 实现模拟抽奖
import randomimport threadingfrom time import sleepimport keyboarddef read_phone(): with open('pool.txt', mode='r') as f: phones = [int(p) for p in f.readlines()] return phonesdef print_phone(phones): global lucy_p max = .
原创
2022-01-17 19:41:49 ·
998 阅读 ·
0 评论