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

python tuple compare with specific number

I have this piece of code

import itertools
 
values = [1, 2, 3, 4]
 
per = itertools.permutations(values, 2)

hyp = 3
 
for val in per:
    print(*val)

Output:

1 2  
1 3  
1 4  
2 1  
2 3  
2 4  
3 1  
3 2  
3 4  
4 1  
4 2  
4 3  

I want to compare each tuple with value of hyp (e.g. 3). If each tuple has value less than or equal to hyp it keeps it and if condition doesn't meet, It discard it. In this case the tuples (4,1),(4,2),(4,3) should be removed.

in other words, Based on hyp value it takes pair. If hyp =2 then from value list it output should be like this

1 2  
1 3  
1 4  
2 1  
2 3  
2 4  

I am not sure whether i explained my problem clearly or not. Let me know if it is unclear.

question from:https://stackoverflow.com/questions/65925771/python-tuple-compare-with-specific-number

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

1 Reply

0 votes
by (71.8m points)

This will do it. You just need to extract the zero index of each tuple and compare it to hyp:

import itertools
values = [1, 2, 3, 4]
per = itertools.permutations(values, 2)
hyp = 3
for tup in per:
   if tup[0] <= hyp:
        print(*tup)

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

1.4m articles

1.4m replys

5 comments

57.0k users

...