功能未使用。为什么?

时间:2018-10-02 17:51:14

标签: python python-3.x

我想知道为什么会发生这种情况(在图片中)该功能未使用。为什么这样?如何使用?谢谢! :)

<EngineDocList>
  <DocVersion>1.0</DocVersion>
  <EngineDoc>
    ...
    <User>
      <Username>testuser</Username>
      <Password>test</Password>
      <CustomField DataType="S32">blablabla</CustomField>
    </User>
    ...
  </EngineDoc>
</EngineDocList>

在下面的图片中,您可以看到我的意思。

enter image description here

1 个答案:

答案 0 :(得分:0)

首先,请直接将您的代码发布到您的问题中,而不是图像。我编辑了建议的问题。

您曾经调用函数hellohi吗?您应该调用函数来执行它。定义它们无济于事。以下代码将实现您的预​​期。

def hello():
    def hi():
        h = input("Hey")
        if h == "Hey":
            print("hi")
            exit()
        exit()
    hi()
hello()