問題是編寫一個函數randNumMaxFor(n, maxValue)
,使用for循環生成0
和maxValue
之間的n
隨機數列表。我可以得到隨循環生成的隨機列表,但我不知道如何進入下一步。感謝您提供任何提示或提示。使用for循環的Python生成列表,查找maxValue
import random
def randomNumbers(n):
#create an empty list
myList=[]
#While loop to create new numbers
for n in range(0,9):
#create a random integer between 0 and 9, inclusive
randomNumber=int(random.random()*10)
#add the random number to the list of random numbers using the append() method
myList.append(randomNumber)
return myList
什麼是「下一步」? –
作爲參數傳入的'n'會怎樣?它在'for'循環中被重複使用。 –