一个改进的小要求--限定随机数的个数,生成的随机数总和在一定范围内
生活随笔
收集整理的這篇文章主要介紹了
一个改进的小要求--限定随机数的个数,生成的随机数总和在一定范围内
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
這個可以應(yīng)用在很多場合的,你猜?
import randomtime_seconds = 18000 time_seconds_float = 1800number = 500print "this range of limit is between %s and %s" % (time_seconds, time_seconds + time_seconds_float) while True:time_list = [random.randint(10, 70) for i in range(500)]print 'sum of time_list:', sum(time_list) if sum(time_list) > time_seconds and sum(time_list) < time_seconds + time_seconds_float:breakprint "length of time_list:",len(time_list) print time_list轉(zhuǎn)載于:https://www.cnblogs.com/aguncn/p/4751818.html
總結(jié)
以上是生活随笔為你收集整理的一个改进的小要求--限定随机数的个数,生成的随机数总和在一定范围内的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Xamarin Android 所见即所
- 下一篇: android 开源网站