可以避免这一行的重复吗?

时间:2016-08-04 03:49:15

标签: python repeat non-repetitive

'=' not in access and name + '.' not in access

我希望在一行Python代码中避免not in access的多重性。为了方便起见,我使用了表达式评估循环来处理更多重复次数的情况,但两次看起来很奇怪。

1 个答案:

答案 0 :(得分:0)

这是另一种选择:

all(s not in access for s in ('=', name + '.'))

由你来决定这是否比你的代码更简单 - 但至少它避免了必须写两次not in access