def FuncA():
x = 0
while x < 10:
Hide = int(random()*1000)
if Hide > 99 and Hide < 1000 and Hide % 2 != 1:
print Hide
x = x + 1
def FuncB():
Hide = 0
for b in range(x):
if Hide > 99 and Hide < 1000 and Hide % 2 == 0:
print Hide
def FuncC():
x = 0
while x < 10:
Hide = int(random()*1000)
if Hide > 99 and Hide < 1000 and Hide % 2 == 1:
print Hide
x = x + 1
def FuncD():
x = 0
while x < 10:
Hide = int(random()*1000)
if Hide > 99 and Hide < 1000 and Hide % 2 == 1:
print Hide
x = x + 1
def FuncE():
L = 0
X = input("Please give me a number : ")
for S in range(X):
if X % (S+1) == 0:
L = L + 1
print S + 1
if NumberOfTimesDivided == 2:
print "The number is PRIME"
else:
print "The Number is NOT PRIME"
IM 尝试使用随机数来获取其中的 10 个数字,每个函数必须打印出 10 个不同的随机数。这需要帮助看看这是否正确或需要修复它。下面显示了每个函数想要做什么。
在 FuncA # 中打印随机奇数 10个在一行中
在 FuncB # 中打印随机偶数 10个在一行中
在 FuncC# 中打印随机奇数 3 位数字,其中 10个在一行中
在 FuncD # 打印随机偶数 4 位数字 10个在一行
在 FuncE # 在一行中打印10个随机素数
我的问题是如何让他们为我制作的每个函数打印随机数。在上面,我希望他们执行一个命令,以一个奇数打印随机数,另一个偶数,然后以奇数 3 位数和 4 位数打印随机数,最后是素数。他们每个人必须打印出10个不同的随机数。