python Python中的简单随机字符串生成器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python中的简单随机字符串生成器相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python2.7
chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
import random
import sys

if __name__ == "__main__":
    end = 1000
    if len(sys.argv[:]) > 1:
        _end = int(sys.argv[1])
        if _end > 0:
            end = _end
    res = ""
    for i in range(0, end):
        res += chars[random.randint(0,len(chars)-1)]
    print res

以上是关于python Python中的简单随机字符串生成器的主要内容,如果未能解决你的问题,请参考以下文章

python 生成随机数据 验证算法

Python random模块的简单介绍

python faker 生成随机类型字符串

python 生成随机数据 验证算法

怎么用python生成随机数?

如何用python生成随机的15行6列的随机数据