作業第二週PYTHON

使用 Python 實現隨機生成 200 無重複激活碼(或者優惠券),字符串長度大於5以上. import random count = 0 s1 = set() while True: s = 'abcdefghjkl1234567890' ys = '' for i in range(6): ys += random.choice(s)
相關文章
相關標籤/搜索