0

我的代码片段:

def determinewelltype(currentuwi,welltype):
    if current uwi in vertuwis:
        welltype = "Vertical"

currentuwi = "1aa010109306w400"
welltype = "UNKNOWN"
determinewelltype(currentuwi,welltype)
print currentuwi,welltype

在我的代码的另一部分,我构建了一个名为 vertuwis 的列表,其中包含许多字符串。

此代码段试图确定 currentuwi 是否在 vertuwis 列表中。如果是,井型应该是垂直的。

我知道给定的 currentuwi 在我的列表中,但是当我在最后一行代码中打印井类型时,井类型是 UNKNOWN,这意味着我的代码不起作用。

我哪里出错了?

4

1 回答 1

2

这更正了代码中的错误:

vertuwis = ['a', 'b', 'c']

def determinewelltype(currentuwi,welltype):
    if currentuwi in vertuwis:
        welltype = "Vertical"
    return welltype

currentuwi = "a"
welltype = "UNKNOWN"
welltype = determinewelltype(currentuwi,welltype)
print currentuwi,welltype   # prints out: a Vertical
于 2013-03-28T22:15:02.743 回答