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
154 views
in Technique[技术] by (71.8m points)

python - Iteration of list with filtering condition

I have two lists (starting_year,ending_year) as below, and I want to iterate both list in such that it will return me a possible combination of starting_year and ending_year. However, I want to filter out any combination that doesn't make any sense, example of those value is; starting year that is greater than ending year, ex (2015,2014) or starting year = ending year (2014,2014).

I know it sound simple, but anyone knows how to write it?

starting_year=[2012,2013,2014,2015]
ending_year=[2015,2014,2013,2012]

for i in range (0,len(starting_year)):
    for j in range (0,len(ending_year)):
        print(starting_year[i],ending_year[j])

current output

2012 2015
2012 2014
2012 2013
2012 2012
2013 2015
2013 2014
2013 2013
2013 2012
2014 2015
2014 2014
2014 2013
2014 2012
2015 2015
2015 2014
2015 2013
2015 2012

question from:https://stackoverflow.com/questions/65915398/iteration-of-list-with-filtering-condition

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

1 Reply

0 votes
by (71.8m points)

Iterate on the values and add a condition:

starting_year = [2012, 2013, 2014, 2015]
ending_year = [2015, 2014, 2013, 2012]

for i in starting_year:
    for j in ending_year:
        if i < j:
            print(i, j)

Output:

2012 2015
2012 2014
2012 2013
2013 2015
2013 2014
2014 2015

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

...