python 就是随机列表取三个随机数求平均值

如题所述

第1个回答  2021-05-21
import random

from numpy import *

front = list(range(1, 36)) #生成1-35的列表

print(mean(front))
相似回答