生成随机字母串 :param length:生成字符串长度 :return 字母串
(length=8)
| 13 | |
| 14 | |
| 15 | def randomString(length=8): |
| 16 | """ |
| 17 | 生成随机字母串 |
| 18 | |
| 19 | :param length:生成字符串长度 |
| 20 | :return 字母串 |
| 21 | """ |
| 22 | return ''.join([random.choice(ascii_lowercase) for _ in range(length)]) |
| 23 | |
| 24 | |
| 25 | def randomDigits(length=8): |