标签:logs img 9.png 字符串 app target 分享图片 ogre ogr
1 upper函数,将字符串变为大写
2 random.sample(str ,k)
将字符串中选取K个片段,返回
import random
squ = ‘qwertyuiopasdfghjklzxcvbnm1234567890‘
for i in range(200):
codes = []
for j in range(5):
code = ‘‘.join(random.sample(str.upper(squ), 5))
codes.append(code)
print(‘-‘.join(codes))
标签:logs img 9.png 字符串 app target 分享图片 ogre ogr
原文地址:https://www.cnblogs.com/yymhaha/p/9245430.html