可能重複:
find the maximum number in a list using a loop在Python上重複列表的長度?
我通過使用循環查找在Python中的列表中的最大數量。爲了做到這一點,我需要一個循環遍歷整個列表。我可以使用哪個循環遍歷整個列表?我是Python的新手。
可能重複:
find the maximum number in a list using a loop在Python上重複列表的長度?
我通過使用循環查找在Python中的列表中的最大數量。爲了做到這一點,我需要一個循環遍歷整個列表。我可以使用哪個循環遍歷整個列表?我是Python的新手。
重複的代碼n次,其中n是some_list的長度是這樣做了塊:
for i in xrange(len(some_list)):
# block of code
或...
i = 0
while i < len(some_list):
# block of code
i = i + 1
你可以通過用一個列表像循環:
for item in lst:
# do something with item
然而,一個更簡單的方式來獲得在列表中(這似乎是你想要的)最大的產品:
max(lst)
try:
max_ = my_list[0]
except IndexError:
raise ValueError('max on empty sequence?')
for element in my_list[1:]:
if element > max_:
max_ = element
如果我只理解你的問題,我將不得不提供幫助。你可以重複一下嗎? – Hyperboreus
查看python [documentation](http://python.org/doc/)。很可能你找到的答案就在那裏。 –
來自先前的評論:[whatcha talkin bout willis?](http://www.youtube.com/watch?v=Qw9oX-kZ_9k) – Rubens