如何用Python随机产生1000个1~10000之间的整数,找出其中最大的5个三位数并
答案:1 悬赏:0 手机版
解决时间 2021-11-11 22:16
- 提问者网友:夢醒日落
- 2021-11-11 19:06
如何用Python随机产生1000个1~10000之间的整数,找出其中最大的5个三位数并
最佳答案
- 五星知识达人网友:荒野風
- 2021-11-11 19:41
1、
#!python3
from random import randint
l=[randint(1,10000) for i in range(1000)]2、
l3=sorted([i for i in l if i<1000],reverse=True)
m5=(l3[0],l3[1],l3[2],l3[3],l3[4])
print(m5)运行结果:
[willie@localhost zhidao]$ python3 suijishu.py
(994, 991, 988, 955, 955)
[willie@localhost zhidao]$ python3 suijishu.py
(968, 966, 957, 953, 952)
#!python3
from random import randint
l=[randint(1,10000) for i in range(1000)]2、
l3=sorted([i for i in l if i<1000],reverse=True)
m5=(l3[0],l3[1],l3[2],l3[3],l3[4])
print(m5)运行结果:
[willie@localhost zhidao]$ python3 suijishu.py
(994, 991, 988, 955, 955)
[willie@localhost zhidao]$ python3 suijishu.py
(968, 966, 957, 953, 952)
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯