本文是基于Windows 10系统环境,实现python生成随机数、随机字符、随机字符串:
(1) 生成随机数
随机整数
1
2
3
4
|
import random num = random.randint( 1 , 50 ) # 闭区间 print (num) |
随机选取0到100间的偶数
1
2
3
4
|
import random num = random.randrange( 0 , 101 , 2 ) # 左闭右开区间 print (num) |
随机浮点数
1
2
3
4
5
6
|
import random num = random.random() # 生成0-1之间的随机浮点数 num2 = random.uniform( 1 , 10 ) # 生成的随机浮点数归一化到区间1-10 print (num) print (num2) |
(2) 生成随机字符
随机字符
1
2
3
4
5
|
import random alphabet = 'abcdefghijklmnopqrstuvwxyz!@#$%^&*()' char = random.choice(alphabet) print (char) |
(3) 生成随机字符串
生成指定数量的随机字符串
1
2
3
4
5
|
import random alphabet = 'abcdefghijklmnopqrstuvwxyz!@#$%^&*()' characters = random.sample(alphabet, 5 ) print (characters) |
从a-zA-Z0-9生成指定数量的随机字符
1
2
3
4
5
|
import random import string value = ''.join(random.sample(string.ascii_letters + string.digits, 8 )) print (value) |
随机选取字符串
1
2
3
4
|
import random table = [ '剪刀' , '石头' , '布' ] print (random.choice(table)) |
到此这篇关于python生成随机数、随机字符、随机字符串的方法示例的文章就介绍到这了,更多相关python生成随机数、随机字符、随机字符串内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://xuzheng.blog.csdn.net/article/details/91042234