作业第二周PYTHON

使用 Python 实现随机生成 200 无重复激活码(或者优惠券),字符串长度大于5以上. import random count = 0 s1 = set() while True: s = 'abcdefghjkl1234567890' ys = '' for i in range(6): ys += random.choice(s)
相关文章
相关标签/搜索