私のコードのスニペット:
def determinewelltype(currentuwi,welltype):
if current uwi in vertuwis:
welltype = "Vertical"
currentuwi = "1aa010109306w400"
welltype = "UNKNOWN"
determinewelltype(currentuwi,welltype)
print currentuwi,welltype
コードの別の部分で、多数の文字列で構成される vertuwis というリストを作成しました。
このスニペットは、currentuwi が vertuwis のリストにあるかどうかを判断しようとしています。そうである場合、welltype は垂直である必要があります。
特定の currentuwi がリストにあることはわかっていますが、コードの最後の行で welltype を出力すると、well type が UNKNOWN になり、コードが機能しないことを意味します。
どこで間違ったのですか?