gpt4 book ai didi

python - 随机数字列表并将它们相加

转载 作者:行者123 更新时间:2023-11-30 22:26:32 25 4
gpt4 key购买 nike

我正在尝试创建一个程序,要求用户输入一个数字,然后生成用户输入的随机数字列表,然后使用一个函数将这些数字添加在一起并将其返回到主函数。我很迷茫,有人可以帮助我吗?

import random

def main():
rand = int(input('How many random intergers? (Max 20)'))
if rand <= 20:
for x in range(rand):
print (random.randint(1,9), end=' ')
total = randnums(x)
print('Integers total is ', total)
else:
print('Bad inpit. Maximum input is 20.')

尝试获取此示例输出

有多少个随机整数(最多 20)? 12

5 9 7 7 9 8 8 2 5 5 8 7

整数总数为 80

最佳答案

import random
def f():
n= input("give n : ")
return sum([random.randint(0,10) for i in range(n)])

这将返回 0 到 10 之间的 10 个随机数的总和

关于python - 随机数字列表并将它们相加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47213130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com