pythonに表示されるIndentationError:expected an indented blockの解決方法


pythonはフォーマットを特に重視する言語であることはよく知られているので、IndentationError:expected an indented blockが現れ、初心者にとっては正常で、エラーコードは以下の通りです.
while True:
    for i in menu:
    print(i,menu[i])

変更後のコードは次のとおりです.
while True:
    for i in menu:
        print(i,menu[i])
pythonを学ぶときは、スペースが1つであってもフォーマットの問題に注意しなければなりません.