python 生产随机字符
Posted Joelwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 生产随机字符相关的知识,希望对你有一定的参考价值。
1 from random import Random 2 3 def random_str(randomlength): 4 str = ‘‘ 5 chars = ‘0123456789-.qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM‘ 6 length = len(chars) - 1 7 random = Random() 8 for i in range(randomlength): 9 str+=chars[random.randint(0,length)] 10 print str 11 return str 12 random_str(randomlength=255)
以上是关于python 生产随机字符的主要内容,如果未能解决你的问题,请参考以下文章
python 编写代码首先生成包含1000个随机字符的字符串,然后统计每个字符的出现次数。