1

我在 Python 中有一个字符串列表,我想检查字符串 "EVN" 是否不存在于 rangesegmentList[x][0:3]中,因此我可以在列表中的特定位置创建它。

我正在尝试检查列表中此范围segmentType = segmentList[x][0:3]create_EVN()删除它们。

我对python相当陌生,我正在尝试找到最有效的方法来做到这一点。我试过循环遍历列表但无济于事。

4

2 回答 2

3

这是你想要的?

if 'EVN' not in segmentList[x][0:3]:
   create_EVN()
于 2013-07-30T10:37:07.697 回答
2

怎么样

if 'EVN' not in segmentList[x][0:3] :
    create_EVN()
于 2013-07-30T10:36:34.850 回答