python在100到200之间的一个随机的偶数?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python在100到200之间的一个随机的偶数?相关的知识,希望对你有一定的参考价值。
参考技术A 建一个数组100,102,104,...,200
随机生成 1-50 的数,作为 下标,指向 对应的偶数 就行
#!/usr/bin/python3
# -*- coding: UTF-8 -*-
import random
x = range(100,201,2)
i = 0
while i<=50:
index = random.randint(1,50)
print("%d -> %d" % (index,x[index]))
i += 1
#("Hello, World!")
结果: 部分
1 -> 102
1 -> 102
15 -> 130
13 -> 126
49 -> 198
4 -> 108
30 -> 160
45 -> 190 参考技术B dn已为您找到关于python100到200之间的素数相关内容,包含python100到200之间的... 而后编制主函数,任意输入一个大于4的偶数d,找出满足d=d1+d2的所有数对,其中要求d1...
www.csdn.net-快照 参考技术C import random
numbers = random.randint(100, 200)
if numbers % 2 == 1:
numbers += 1
print(numbers)
else:
print(numbers)
以上是关于python在100到200之间的一个随机的偶数?的主要内容,如果未能解决你的问题,请参考以下文章