博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python之random.seed()用法
阅读量:5044 次
发布时间:2019-06-12

本文共 506 字,大约阅读时间需要 1 分钟。

import random# 随机数不一样random.seed()print('随机数1:',random.random())random.seed()print('随机数2:',random.random())# 随机数一样random.seed(1)print('随机数3:',random.random())random.seed(1)print('随机数4:',random.random())random.seed(2)print('随机数5:',random.random())'''随机数1: 0.7643602170615428随机数2: 0.31630323818329664随机数3: 0.13436424411240122随机数4: 0.13436424411240122随机数5: 0.9560342718892494

 

可以看到当seed()没有参数时,每次生成的随机数是不一样的,而当seed()有参数时,每次生成的随机数是一样的,同时选择不同的参数生成的随机数也不一样

转载于:https://www.cnblogs.com/xiangxiaolin/p/11575663.html

你可能感兴趣的文章