1 class me:
2 age = 27
3 gender = 'male'
4 orientation = 'straight'
5 size = [177, 65]
6 movies_tonight = 'Interstellar'
7
8 def find( you ):
9 if you.age <= me.age:
10 if you.orientation == me.orientation:
11 if you.size[0] - you.size[1] > 110:
12 return
13
14 one = me()
15
16 find( one )