程序中有很多地方需要用到随机字符,比如登录网站的随机验证码,通过random模块可以很容易生成随机字符串。

    1. >>> random.randrange(1,10) #返回1-10之间的一个随机数,不包括10
    2. >>> random.randint(1,10) #返回1-10之间的一个随机数,包括10
    3. >>> random.randrange(0, 100, 2) #随机选取0到100间的偶数
    4. >>> random.random() #返回一个随机浮点数
    5. >>> random.choice('abce3#$@1') #返回一个给定数据集合中的随机字符
    6. '#'
    7. >>> random.sample('abcdefghij',3) #从多个字符中选取特定数量的字符
    8. ['a', 'd', 'b']
    9. #生成随机字符串
    10. >>> import string
    11. >>> ''.join(random.sample(string.ascii_lowercase + string.digits, 6))
    12. '4fvda1'
    13. #洗牌
    14. >>> a
    15. [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    16. >>> random.shuffle(a)
    17. >>> a
    18. [3, 0, 7, 2, 1, 6, 5, 8, 9, 4]

    随机验证码

    1. import random
    2. import string
    3. 验证码 = "".join(random.sample(string.digits + string.ascii_lowercase, 5))
    4. print(验证码)
    5. s = string.digits + string.ascii_lowercase
    6. print(s)