Flask 学习计划
# 文档
欢迎来到 Flask 的世界 — Flask 中文文档( 1.1.1 ) (opens new window)
# 应用工厂
# 代码片段
# 生成随机字符串
- python2
import random,string
# py2
In [14]: ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(15))
Out[14]: 'B4X0a1MXZlq8PKb'
1
2
3
4
2
3
4
- python3
import random
# py3.6+
''.join(random.choices(string.ascii_letters + string.digits, k=15))
# or
import secrets
secrets.token_urlsafe(nbytes=15)
1
2
3
4
5
6
2
3
4
5
6
编辑 (opens new window)
上次更新: 2024-07-15, 03:27:09