码迷,mamicode.com
首页 > 编程语言 > 详细

python 生成随机字符串 和随机数字

时间:2018-07-19 19:20:54      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:git   sam   数字   random   str   string   form   dig   随机数   

  • 生成随机字符串:
''.join(random.sample(string.ascii_letters + string.digits, 8))  //字符串中不会重复


for _ in range(8):
    s += random.choice(string.ascii_letters + string.digits) //字符串可以重复
  • 生成随机浮点数

random.uniform(10, 20)

  • 生成随机整数

random.randint(12, 20)

python 生成随机字符串 和随机数字

标签:git   sam   数字   random   str   string   form   dig   随机数   

原文地址:https://www.cnblogs.com/wanderingfish/p/9337535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!