random 模块
Random variable generators.
1 | # 0-1 不包括1 输出一个随机浮点数 random.random() |
随机验证码
长度自定义 包括0-9 a-z A-Z
1 | def get_auth_code(length): |
Grap life by the horns.
Random variable generators.
1 | >>> random.random() # 0-1 不包括1 输出一个随机浮点数 |
长度自定义 包括0-9 a-z A-Z
1 | def get_auth_code(length): |