本站改版新增arduino频道
from uos import urandom as ran
def pwd(size=8):
alfa = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890'
return ''.join([alfa[x] for x in [(ran(1)[0] % len(alfa)) for _ in range(size)]])
print(pwd(8))
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0097479820251465 seconds