如何测试一系列不一致的值

时间:2016-01-07 03:59:38

标签: python testing numbers range

如果x等于关于不一致数字的系列,我需要在python中测试 例如1, 2, 7, 9, 32, 98

他能用的东西是不是永远不会用的?我知道我可以输入

if x == 1 or x== 2 or x ==7 or x== 9 ...:
    [code here]

有没有更快的方法在Python语法中键入它?

1 个答案:

答案 0 :(得分:1)

if x in [1, 2, 7, 9, ...]:
    [code here]