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 生产随机字符的主要内容,如果未能解决你的问题,请参考以下文章

PHP 代码片段

python生产随机数案例

python:使用迭代方法生产随机码

python 编写代码首先生成包含1000个随机字符的字符串,然后统计每个字符的出现次数。

Python 和 C++ 下字符串查找速度对比,你觉得Python适合算法竞赛吗

python+spark程序代码片段