First time here? Check out the FAQ!

Ask Your Question
1

Conditional in list

asked 4 years ago

Cyrille gravatar image

updated 4 years ago

If this works

[1  if i<12 else (0 if 12<= i <=15 else 2) for i in range(20)]

where is my fault with

cand=["A","B","C","D"]
cond1=[[141,107],[163,85],[127,121],[132,116],[117,131],[120,128]]
cond2=[(["A","B"],"A"),(["A","C"],"A"),(["A","D"],"A"),(["B","C"],"B"),(["B","D"],"D"),(["C","D"],"D")]
zoo=[[0   if cond2[i][1]==cand[j] else ((abs(cond1[i][0]-cond1[i][1])) if cond2[i][0][0]=cand[j] or cond2[i][0][1]=cand[j]) for i in range(len(cond2))] for j in range(len(cand))]
zoo
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
4

answered 4 years ago

Max Alekseyev gravatar image

You don't have else for the second if.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 896 times

Last updated: Feb 13 '21