发布网友 发布时间:2022-05-20 22:15
共2个回答
热心网友 时间:2023-10-05 07:37
排版报错,截个图吧。
import random
def getRandom():
myflag=1
while(myflag):
numList=random.sample(range(0, 100), 3)
if(numList[0]+numList[1]+numList[2]>100):
myflag=0
return numList
我想要的是这样,但我写的不对
热心网友 时间:2023-10-05 07:38
import random追问
我想要的是这样,但我写的不对