Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
211 views
in Technique[技术] by (71.8m points)

python - How many times does a for loop evaluate its expression list?

I have the following code:

list1 = [4,1,2,6]
for elem in sorted(list1):
    #some task

I was wondering how many times does Python sort the list using the sorted() method? Is it for each iteration or just once?

In other words is the following code more efficient?

list1 = [4,1,2,6]
list1 = sorted(list1)
for elem in list1:
    #some task 
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In both code examples, the list is sorted only once.

The expression on the right of the in operator in a for-loop header is evaluated just once, before looping commences. You can read about this in the documentation:

for_stmt ::=  "for" target_list "in" expression_list ":" suite
              ["else" ":" suite]

The expression list is evaluated once; it should yield an iterable object.

In fact, the second code example is less efficient because there is an unnecessary assignment.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...