新手,按照逻辑写了个循环。如下
list_a= []
old = []
new = []
test = []
...
for i in list_a:
if 'keyword' in list_a[0]:
if list_a[1] == A:
new.append[list[2]]
else:
old.append[list[2]]
else:
if list_a[1]== B and ConditionB:
test.append[list[2]]
if len(old) == 0 and len(new)>10:
dosomething()
else:
if len(new) < len(old) and len(test) ==0:
dosomething2(0)
else:
if len(test)==0:
dosomething3()
else:
if len(test) > 5:
dosomething4()
老码农同事说我 if else 写的太多,让别人不容易看懂,建议优化下代码比如用 If .. continue。
但是我想了下似乎这种有众多子条件的似乎不太适合用 if ...contiune 来做啊。
请教大家这段代码有啥优化建议么